* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --lightB: #1d1d1b;
}

@font-face {
    font-family: 'Textes';
    src: url('fonts/TWKLausannePan-300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Textes';
    src: url('fonts/TWKLausannePan-200.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

html,
body {
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

h1,
h2 {
    display: none;
}

h3 {
    font-family: "bookmania", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    text-align: center;
    color: var(--lightB);
}

main {
    width: 100vw;
    height: 100%;
}

#bg-img {
    width: 100vw;
    height: 100%;
    background: url('imgs/nogues.png') no-repeat;
    background-size: contain;
    background-position: center 10vh;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#texts {
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: var(--lightB);
}

#titles {
    width: 100vw;
    display: flex;
    justify-content: space-around;
    /*    margin-top: 45vh;*/
}

.titles {
    height: 50px;
    width: auto;
}

#countdonw-wraper {
    width: 100vw;
    height: 100vw;
    position: fixed;
    top: 0;
}

#date {
    font-family: Textes, sans-serif;
    font-size: 30px;
    text-align: center;
    color: var(--lightB);
}

.countdown {
    font-family: Textes, sans-serif;
    font-size: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 62vh;
    color: var(--lightB);
}

.countdown span {
    text-align: center;
    color: var(--lightB);
}

@media only screen and (max-width: 768px) {
    #bg-img {
        background-size: cover;
    }
    .titles {
        height: 20px;
        width: auto;
    }

    .countdown {
         margin-top: 55vh;
        font-size: 45px;
    }

    #date {
        font-family: Textes, sans-serif;
        font-size: 20px;
        text-align: center;
        color: var(--lightB);
    }
}