::-webkit-scrollbar {
    width: 0;
}

::-webkit-scrollbar-track {
    background-color: #333;
}

::-webkit-scrollbar-thumb {
    background-color: #2799ff;
}

body {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: row;
    height: 100vh;
    font-family: sans-serif;
    background-color: #202629;
    margin: 0;
}

.wrapper {
    text-align: center;
    overflow: hidden;
}

h1 {
    color: white;
    font-size: 5vw;
}

.countdown {
    display: flex;
}

.countdown .day,
.countdown .hour,
.countdown .min,
.countdown .sec {
    color: #2799ff;
    padding: 1vw 2.5vw;
    text-align: center;
}

.countdown .day .num,
.countdown .hour .num,
.countdown .min .num,
.countdown .sec .num {
    display: block;
    font-size: 18vw;
    line-height: 1em;
}

.countdown .day .word,
.countdown .hour .word,
.countdown .min .word,
.countdown .sec .word {
    display: block;
    font-size: 2.5vw;
    color: #8a99ab;
}
