body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ff0000 0%, #000000 50%, aqua 100%);
    color: aqua;
    font-family: "Courier New", Courier, monospace;
    overflow: hidden;
}

#countdown {
    font-size: clamp(4rem, 2vw, 10rem);
    font-weight: bold;
    text-shadow:
        0 0 20px rgba(102, 194, 255, 0.69),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
    text-align: center;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}
#label {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}
#day-label {
    font-size: 1.2rem;
    opacity: 0.8;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(128, 0, 128, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(128, 0, 128, 0.8);
    }
}
@media (max-width: 600px) {
    #label {
        font-size: 1.2rem;
    }
}

a {
    color: aqua;
}
a:active {
    color: rgb(255, 255, 255);
}
a:hover {
    font-size: large;
}
