body {
    background-color: #000000; /* Your solid black background */
    position: relative; /* Essential for positioning the pseudo-element correctly */
    margin: 0;
    min-height: 100vh;
    /* No background-image or opacity directly on body */
}

/* This creates a new "layer" specifically for your background image */
body::before {
    content: ""; /* Required for pseudo-elements */
    position: absolute; /* Allows precise positioning relative to the body */
    width: 100%;
    height: 100%;
    opacity: 0.7; /* <--- THIS IS WHERE YOU CONTROL THE IMAGE'S TRANSPARENCY */
    z-index: -1; /* Puts this pseudo-element layer BEHIND your body's content */
}

.huge-text {
    color: yellow;
    padding: 0;
    justify-content: center;
    display: flex;
    font-family: 'DynaPuff', Arial, sanf-serif;
    font-weight: bold;
    align-items: center;
    font-size: 2rem;
    text-align: center;
}

.big-text {
    color: aqua;
    justify-content: center;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: 'Playpen_Sans', Arial, sanf-serif;
}

.enlarged-title {
    font-size: 3.5rem;
}

.enlarged-subtitle {
    font-size: 2.75rem;
}

.enlarged-content {
    font-size: 2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

footer {
    margin-top: 120px;
    text-align: center;
    padding: 3px;
    color: white;
}
