/* Reset and base */
* {
  box-sizing: border-box;
}
html {
  margin: 0;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #eee;
  background: radial-gradient(circle at center, #7b3fbf 40%, #2e0854 90%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  animation: pulseCircle 3.5s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

@keyframes pulseCircle {
  0%, 100% {
    background-size: 110% 100%;
  }
  50% {
    background-size: 130% 130%;
  }
}

.container {
  background: rgba(20, 20, 20, 0.85);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  width: 320px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  text-align: center;
}
.pfp {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #7b3fbf; /* purple */
  margin-bottom: 0rem;
  box-shadow: 0 0 15px #7b3fbf88;
}
h1 {
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
}
a {
  display: block;
  background: #7b3fbf; /* purple */
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
  margin: 10px 0;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px #7b3fbf99;
}
a:hover, a:focus {
  background: #935dde; /* lighter purple */
  transform: translateY(-3px);
  box-shadow: 0 6px 18px #935ddecc;
}

svg {
    height: 1.5rem;
}