body {
  background-color: #000;
  color: #fff;
  font-family: '0xProto Nerd Font', 'Fira Code', monospace;
  margin: 0;
  padding: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
}

.profile-wrapper {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 720px;
}

.profile-wrapper::after {
  content: "";
  position: absolute;
  top: 5vw;
  left: -20%;
  right: -20%;
  height: 100%;
  width: 140%;
  margin: 0 auto;
  transform: scale(1);
  filter: blur(8vw);
  background: #84046D; /*uses the same color i use in my i3 config :3*/
  z-index: -1;
  border-radius: 2rem;
  pointer-events: none;
}

.profile-card {
  background-color: #430c49;
  border-radius: 1rem;
  width: 100%;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
}


.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.button-r,
.button-l {
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  background-color: #ff66a1;
  color: white;
  border: none;
  transition: background-color 0.2s ease;
}

.button-r:hover,
.button-l:hover {
  background-color: #e55290;
}

.headtext {
  font-size: 1.25rem;
  padding: 0.625rem 1.25rem;
  font-weight: bold;
  color: #fff;
}

.aahhhhh {
  font-size: 1.125rem;
  padding: 0.75rem 0;
  font-weight: bold;
  color: #fff;
}

.pfp-content {
  text-align: center;
}

.pfp {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff66a1;
  margin-bottom: 1rem;
}

.username {
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
}

.pronouns {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 1.25rem;
}

.text-thingie {
  margin-bottom: 1.5rem;
  text-align: left;
}

.text-thingie-title {
  font-size: 1.1em;
  font-weight: 600;
  color: #ff66a1;
  margin-bottom: 0.375rem;
}

.text-thingie-content,
.text-thingie-meow {
  line-height: 1.6;
  color: #fff;
}

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

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  .banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-r,
  .button-l {
    width: 92%;
    text-align: center;
  }

  .pfp {
    width: 100px;
    height: 100px;
  }

  .headtext {
    font-size: 1.1rem;
  }

  .aahhhhh {
    font-size: 1rem;
  }
}
