body {
  background-color: #000000;
  color: #ffffff;
  font-family: Georgia, serif;
  border: 2px solid #ffffffa0;
  padding: 20px;
  box-sizing: border-box;
}

a {
  color: rgba(255, 255, 255, 0.704);
  border: 2px solid #ffffffa0;
}

a:hover {
  color: #f5f9c6;
}

h1,
h2,
h3 {
  font-family: "Cinzel Decorative", serif;
}

h1 {
  font-size: clamp(35px, 10vw, 60px);

  text-align: center;
}

.quote1,
.contact-form,
.decorations,
.aboutMe,
.hyperlinks {
  text-align: center;
}

.mainpagebody,
.aboutMe,
.contact-form {
  text-align: center;
  width: 100%;
  max-width: 1008px;
  display: block;
  margin: 10px auto;
  box-sizing: border-box;
}

.aboutMe {
  border: 1px double #ffffffa0;
  padding: 20px;
  border-radius: 8px;
}

.mdmansion {
  border: 2px solid #ffffffa0;
  font-size: 35px;
}

.games {
  font-weight: bold;
  font-size: 32px;
}

.md-description {
  font-size: 20px;
}

/*Falling Floweysss....:3 */
@keyframes fall {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0.3;
  }
}
.falling-petal {
  position: fixed;
  top: -20px;
  z-index: -1;
  pointer-events: none;
  animation: fall linear forwards;
}

img {
  max-width: 100%;
  height: auto;
}

/* NSFW Image Blur Overlay */
.nsfw-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
  cursor: pointer;
  user-select: none; /* Prevents text highlighting when clicking rapidly */
}

.nsfw-img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: blur(20px);
  transition: filter 0.4s ease;
}

.nsfw-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nsfw-overlay span {
  font-size: 14px;
  font-weight: normal;
  color: #d1d5db;
}

/* When the user clicks/taps, this class is added by JS to remove the blur */
.nsfw-container.revealed .nsfw-img {
  filter: blur(0px);
}

.nsfw-container.revealed .nsfw-overlay {
  opacity: 0;
}
