﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




body {
    background: #efe6d4;
    color: #2b2b2b;
    font-family: "Gravitas One", serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}




.container {
    text-align: center;
}




#countdown {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}




.time-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}




.time-section span {
    font-family: "Gravitas One", serif;
}


.time-section small {
    font-family: Georgia, serif;
    margin-top: 12px;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.75;
}




@media (max-width: 900px) {
    #countdown {
        gap: 30px;
    }




    .time-section span {
        font-size: 3rem;
    }




    .time-section small {
        font-size: 0.8rem;
    }
}




@media (max-width: 650px) {
    #countdown {
        flex-direction: column;
        gap: 24px;
    }
}