.section-countdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: space-evenly;
    background-color: #edebdf;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    

}

.countdown h2 {
    font-family: "Autumn-Wind";
    font-size: 70pt;
    font-weight: 400;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    /*margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    height: 300px;*/
}

.countdown-timer span {
    /*color: #E4B4AE;*/
    color: white;
    font-size: 50pt;
    font-weight: 700;
}

.countdown-timer span i {
    color: black;
    font-size: 14pt;
    font-weight: 400;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
}

@media(max-width: 800px) {
    .countdown h2 {
        max-width: 90%;
        font-size: 12vw;
    }
    .countdown-timer span {
        max-width: 90%;
        font-size: 9vw;
    }
}