.section {
    margin: 2vh 0;
    padding: 2vh 0;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

.countdown-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

#countdown {    
    text-align: center;
    font-family: Cinzel Decorative;
    font-size: max(5vw, 5vh);
}

.back-to-top-button {
    bottom: -50vh;
    color: white;
    text-decoration: none;
    margin: 0 1vw;
    padding: 1vw 5vw;
    background-color: #93B7B1;
    font-family: Cinzel Decorative;
    font-size: max(2vh, 1vw, 10px);
    transition: bottom 0.5s ease-in-out;
}

.back-to-top-button:hover {
    background-color: #e4d2cc;
    color: black;
}

div.flex-box {
    display: flex;
    justify-content: space-between;
}