body {
  background-color: #111111;
  color: #ffffff;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  /* Add a cool background animation */
  animation: background-animation 10s infinite linear;
}

@keyframes background-animation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.container {
  width: 400px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #00ff00;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  background-color: #00ff00;
  overflow: hidden;
  /* Add hover animation for the profile picture */
  transition: transform 0.5s ease-in-out;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1, h2 {
  margin: 10px 0;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 5px 0;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Add some hover styles to the social media links (optional) */
.social-media li a:hover {
  color: #00ff00;
}

/* Style the profile picture on hover */
.profile-pic:hover {
  transform: scale(1.2); /* Increase size by 20% */
  box-shadow: 0px 0px 10px #00ff00; /* Add a cool glow effect */
}
