@font-face {
    font-family: LexendExtraLight;
    src: url(./assets/font/Lexend_Giga/static/LexendGiga-ExtraLight.ttf);
}

@font-face {
    font-family: LexendThin;
    src: url(./assets/font/Lexend_Giga/static/LexendGiga-Thin.ttf);
}

/** DEFAULT BEHAVIOR*/
body {
    font-family: 'LexendExtraLight';
    background-color: black;
    color: white;
    padding: 0;
    margin: 0;

    display: flex;
    justify-content: center;
}

main {
    min-width: 340px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.section {
    height: 100vh;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media {
    display: flex;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.smallScreenTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.smallScreenBrand {
    font-size: 5vw;
}

.smallScreenBrandSeparator {
    font-family: 'LexendThin';
    font-size: 3vw;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.informations {
    text-align: center;
    font-size: 1.5vw;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title h1, .title p {
    margin: 0;
}

/** COUNTDOWN */  
.countdown-container {
    display: flex;
    gap: 5vw;
    text-align: center;
}

.countdown {
    background: rgba(0, 0, 0, 0.3);
}

.time {
    font-size: 10vw;
    font-weight: bold;
    margin-bottom: 5px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.time-change {
    transform: scale(1.3);     
}

.time-label {
    font-size: 3vw;
}

/** BEHAVIOR FOR PHONE*/
@media screen and (max-width: 999px) and (min-width: 340px) {
    .smallScreenTitle {
        flex-direction: column;
    }

    .smallScreenTitle {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .smallScreenTitle div {
        margin: 0.5em auto;
    }

    .informations {
        text-align: center;
        font-size: 2vh;
    }
}

/** BEHAVIOR FOR MEDIUM SCREEN*/
@media screen and (min-width: 1000px) {
    .smallScreenTitle {
        flex-direction: row;
        gap: 3vw;
    }

    .smallScreenBrand {
        font-size: 2.2vw;
    }
    
    .smallScreenBrandSeparator {
        font-size: 2vw;
    }

    .time {
        font-size: 5vw;
        font-weight: bold;
        margin-bottom: 5px;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .time-label {
        font-size: 2vw;
    }

    .informations {
        text-align: center;
        font-size: 1.5vw;
    }
}