.main-index {
  margin: 0px auto;
  padding: 10px;
  width: 100%;
  max-width: 600px;
}
.profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.profile img {
  width: 200px; /* Defina um valor fixo para largura */
  height: 200px; /* Defina um valor fixo para altura */
  border-radius: 50%; /* Faz com que a imagem fique redonda */
  object-fit: cover; /* Garante que a imagem preencha o espaço, centralizada */
  box-shadow: 0px 2px 6px var(--smoke);
}
.profile span {
  width: 100%;
  text-align: center;
  font-family: "Playwrite DK Uloopet";
  letter-spacing: 5px;  
  font-size: 40px;
}
.profile-links ul {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  width: 100%;  
  gap: 20px;
  list-style: none;
}
.profile-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Playwrite DK Uloopet";
  font-size: 25px;
  height: 80px;
  background: var(--background-color);
  border: 2px solid var(--border-color);
  border-radius: 10px;  
  text-decoration: none;  
  transition: background 0.5s;  
  box-shadow: 0px 2px 6px var(--smoke);
}
.profile-links ul li a:hover {
  background: var(--background-color-hover)
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  font-size: 50px;
}
.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  transition: background 1s;  
  box-shadow: 0px 2px 6px var(--smoke);
}
.social-links a:hover {
  background-color: var(--background-color-hover);
}
@media (max-width: 500px) {
  .profile span {
    letter-spacing: 5px;  
    font-size: 30px;
  }
  .social-links {
    gap: 20px;
    font-size: 200%;
  }
}
@media (max-width: 400px) {
  .profile span {
    letter-spacing: 5px;  
    font-size: 20px;
  }
  .profile-links ul li a {
    font-size: 20px;
  }
  .social-links {
    gap: 20px;
    font-size: 200%;
  }
}
@media (max-width: 300px) {
  .profile img {
    width: 150px;
    height: 150px;
  }
  .profile span { 
    font-size: 18px;
  }
  .social-links {
    gap: 5px;
    font-size: 150%;
  }
}
@media (max-width: 250px) {
  .profile span { 
    font-size: 15px;
  }
  .profile-links ul li a {
    font-size: 15px;
  }
  .social-links {    
    font-size: 100%;
  }
}
