body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #303030;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: #202020d6;
  padding: 24px;
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.container h1 {
  margin-bottom: 20px;
  font-size: 20px;
  text-decoration: underline;
  text-align: center;
  color: #e2e2e2;
}

.profile-image {
  width: 158px;
  height: 180px;
  border-radius: 25%;
  object-fit: cover;
  margin: 0 auto 16px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.profile-image:hover{
    animation-name: spin;
    animation-delay: 10s;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.social-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.2s;
  margin-bottom: 10px;
}

.social-link:hover {
  background: #303030;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.social-link img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 6px;
}

.username {
  font-size: 14px;
}
