* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 20px;
  animation: fadeInBody 1s ease-in;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 10px;
}

.card {
  background-color: #1e2a38;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 30px 40px;
  text-align: center;
  animation: slideUp 1.2s ease-out;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #00bcd4;
  animation: popIn 1.5s ease-in-out;
}

h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.title {
  font-size: 16px;
  color: #00bcd4;
  margin-bottom: 20px;
}

.info p {
  text-align: left;
  font-size: 15px;
  margin: 8px 0;
  line-height: 1.5;
}

hr {
  border: none;
  border-top: 1px solid #00bcd4;
  margin: 20px 0;
}

.buttons {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn, .btn-outline {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 25px;
  transition: 0.3s;
  display: inline-block;
  font-weight: bold;
}

.btn {
  background-color: #00bcd4;
  color: #fff;
}

.btn:hover {
  background-color: #0097a7;
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid #00bcd4;
  color: #00bcd4;
}

.btn-outline:hover {
  background-color: #00bcd4;
  color: #fff;
  transform: scale(1.05);
}

<!-- Animations-->
@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInBody {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

<!--Mobile Responsive-->
@media screen and (max-width: 480px) {
  .card {
    padding: 20px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .profile-img {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 22px;
  }

  .info p {
    font-size: 14px;
  }
}