body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/images/background_pixelated.webp') center/cover fixed;
    overflow: hidden;
}

.container {
    display: flex;
    text-align: center;
    height: 100%;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.3); /* Translucent white background */
    border-radius: 12px;
    max-height: 80vh; /* Limit container height to 90% of viewport height */
    overflow-y: auto; /* Enable vertical scrolling if content exceeds container height */

}

.content {
    justify-items: center;
}

p {
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #28282B; /* Black color for the text */
    text-shadow: 2px 2px 4px #FFFFFF; /* Modest white shadow for contrast */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent white overlay */
    backdrop-filter: blur(10px); /* Blur effect for overlay */
    z-index: -1; /* Send overlay behind content */
}