body {
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Background flash on load */
body.flashing {
    animation: flashBackground 0.5s ease-in-out;
}

@keyframes flashBackground {
    0% { background-color: #000; }
    50% { background-color: #fff; }
    100% { background-color: #000; }
}

#intro, #content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#intro h1, #quoteText {
    font-size: 3vw;
    color: white;
    animation: fadeIn 2s ease-in-out;
}

#intro p, #choicesText {
    font-size: 2vw;
    color: red;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.choice:hover {
    color: #ff0000;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 0 0 10px #ff0000;
}

/* Fade-in effect for smoother text appearance */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ShoutVert effect */
.flash-effect {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6vw;
    font-family: 'Impact, sans-serif';
    color: #666;
    opacity: 0.2;
    z-index: -1;
}

/* Text variations */
.text-large { font-size: 4vw; }
.text-small { font-size: 1.5vw; }
.text-red { color: red; }
.text-blink { animation: blinkText 1s infinite; }

@keyframes blinkText {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #quoteText {
        font-size: 5vw;
    }
    #choicesText {
        font-size: 4vw;
    }
.flash-effect {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6vw;
    font-family: 'Impact, sans-serif';
    color: #333;
    opacity: 0.2;
    z-index: -1;
    white-space: nowrap; /* Prevents wrapping */
    width: 100%; /* Adjusts the width to accommodate longer text */
    text-align: center; /* Centers the text horizontally */
}

}
