@import url("https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.55);
  transform: scale(1.04);
  z-index: 0;
}

.shade {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.sound {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 5;
  background: transparent;
  border: 0;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.bio {
  position: relative;
  z-index: 2;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pfp {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.18);
}

h1 {
  margin: 0;
  font-family: "UnifrakturCook", serif;
  font-size: clamp(58px, 9vw, 110px);
  line-height: 0.9;
  text-shadow: 0 2px 18px black;
}

.link {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 16px black;
}

.join {
  margin-top: 30px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  text-decoration: none;
  font-family: "UnifrakturCook", serif;
  font-size: 28px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
}

.join:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 650px) {
  .pfp {
    width: 96px;
    height: 96px;
  }

  .link {
    font-size: 15px;
  }

  .join {
    font-size: 24px;
  }
}