* {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #080808;
  color: #fff;
}
h3 {
  display: block;
  margin: 50px auto;
  margin-bottom: 25px;
  width: fit-content;
  background: #ff004f;
  border: 1px solid #ff004f;
  padding: 14px 50px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: background 0.5s;
}
p {
  padding: 2px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 500;
}

.logo img {
  padding-bottom: 8px;
  border-radius: 50%;
  width:  10vh;
 
  margin-left: 47.5%;
  
}

.My-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(25px, 1fr));
}
.My-links div {
  height: 10rem;
  width: 17rem;
  margin-top: 35px;
  background: #262626;
  border-radius: 10px;
  transition: background 0.7s transform 0.5s;
  text-align: center;
  line-height: 50px;
  
}
.My-links div:hover {
  background-color: #ff004f;
  /* transform:translateX(-15px); */
  transform: scale(1.17);
  cursor: pointer;
}
a {
  text-decoration: none;
  line-height: 100px;
  font-size: 35px;
}
a i {
  font-size: 50px;
  transition: all 0.3s linear;
  color: rgb(255, 255, 224);
}

h4 {
  line-height: 0;
}

footer {
  margin-bottom: 100px;
}

@media only screen and (max-width: 600px) {
  .logo img {
    margin-left: 40%;
    border-radius: 50%;
  }
}
