/* Reset margins and height */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  color: #fff; /* text color on top of your background */
}

/* Fullscreen background image */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://bikiniibabe.neocities.org/Screenshot%202026-02-03%20at%2010.35.45%E2%80%AFPM.png'); /* replace with your file */
  background-size: cover;       /* fills the screen */
  background-position: center;  /* centers the image */
  background-repeat: no-repeat;
  z-index: -1;                  /* behind content */
  filter: brightness(0.8);      /* optional: darken for text readability */
}

/* Content styling */
.content {
  position: relative;
  z-index: 1;          /* stays on top of background */
  padding: 50px;
  text-align: center;
}

.content h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.content a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  transition: color 0.3s;
}

.content a:hover {
  color: #ff69b4; /* fun hover color */
}
