/* style.css */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #e0e0e0;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#profil {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 500px;
  width: 90%;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#profil img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 25px;
  animation: bounceIn 1s ease-in-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

#profil h1 {
  margin: 0;
  font-size: 32px;
  color: #333;
  animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#profil p {
  font-size: 18px;
  color: #666;
  margin: 15px 0;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#links {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  animation: fadeIn 1s ease-in-out;
}

#links li {
  display: inline-block;
  margin: 0 15px;
}

#links a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: color 0.3s, transform 0.3s;
}

#links i {
  font-size: 28px;
  margin-right: 10px;
  transition: transform 0.3s;
}

#links a:hover i {
  transform: scale(1.3);
  color: #0073e6;
}

#links a:hover {
  color: #0073e6;
  transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 600px) {
  body {
    padding: 20px;
  }

  #profil {
    padding: 20px;
  }

  #profil img {
    width: 100px;
    height: 100px;
  }

  #profil h1 {
    font-size: 24px;
  }

  #profil p {
    font-size: 16px;
  }

  #links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #links li {
    margin: 10px 0;
  }

  #links a {
    font-size: 16px;
  }

  #links i {
    font-size: 24px;
  }
}
