/* index.css for index.html */

/* MAIN CONTENT */
body {
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

header {
    background-color: #000;
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
}

.intro-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 170, 255, 0.5);
}

.description-text {
    margin-top: 20px;
    font-size: 1.2rem;
    max-width: 100%;
    color: #d3d3d3;
    line-height: 1.6;
}

.timer {
    font-size: 2rem;
    color: #00aaff;
    font-family: 'Roboto Mono', monospace;
    margin-bottom: 15px;
    text-shadow: 0px 0px 10px #00aaff;
    text-align: center;
}

.timer.compromised {
    color: #ff0000;
    animation: blink 1s infinite;
    text-shadow: 0px 0px 15px #ff0000;
}

.hospital-title.compromised {
    color: #00ff00;
    text-shadow: 0px 0px 15px #00ff00;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
