body {
    min-height: 100vh;
    font-family: 'Vividly', sans-serif;
    text-align: center;
    background-color: black;
    color: blueviolet;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

header {
    font-size: 3rem;
    margin-top: 10px;
    max-width: 90vw;
}

.cerby_plush {
    width: 300px;
    max-width: 80vw;
    height: auto;
}

.countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5vw;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.label {
    font-size: 2rem;
    margin-top: 5px;
}

.days,
.hours,
.minutes,
.seconds {
    font-size: 3rem;
    font-weight: bold;
}

footer {
    text-align: center;
    color: grey;
    margin-top: auto;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    header {
        font-size: 2rem;
    }

    .cerby_plush {
        width: 250px;
    }

    .label {
        font-size: 1.2rem;
    }

    .days,
    .hours,
    .minutes,
    .seconds {
        font-size: 2rem;
    }
}