@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

body {
  font-family: "Roboto", Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.container {
  background: #fff;
  padding: 20px;
  border-radius: 10px;

  width: 100%;
  text-align: center;
}

h1 {
  color: #007bff;
}

.profile-section {
  margin-bottom: 20px;
}

.profile-picture {
  /* border-radius: 50%; */
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.links-section a {
  display: block;
  margin: 10px 0;
  color: #007bff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.links-section a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.goals-section h2 {
  color: #007bff;
}

.goals-section ul {
  list-style-type: none;
  padding: 0;
}

.goals-section li {
  background: #007bff;
  color: #fff;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 10px;
  }
}
