/*--------------------------------------------------------------
# Countdown
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");

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

* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans Condensed", sans-serif;
    box-sizing: border-box;
    text-align: center;
}

.countdown {
    width: 100vw;
    height: 100vh;
    /*background-image: url("../images_countdown/countdown-bg-2.jpg");*/
    /*background-color: #000000;*/
    background-position: center;
    background-size: cover;
    padding: 0 8%;
    position: relative;
}

.logo {
    width: 100px;
    padding-top: 0px;
    padding-bottom: 20px;
    cursor: pointer;
    justify-content: space-between;
}

.content {
    top: 20%;
    position: absolute;
    /*transform: translateY(-50%);*/
    /*transform: translateX(-50%);*/
    color: #fff;
    /*align-content: center;*/
    /*transform: translate(-50%, 0%);*/
    /* margin-left: auto;
        margin-right: auto;*/
    /*align-items: center;*/
}

    .content h1 {
        font-size: 38px;
        font-weight: 600;
        /*text-align: center;*/
    }

    .content button {
        background: transparent;
        border: 2px solid #fff;
        outline: none;
        padding: 12px 25px;
        color: #fff;
        display: flex;
        align-items: center;
        margin-top: 30px;
        cursor: pointer;
        /*position: absolute;*/
    }

    .content p {
        font-size: 12.5px;
        font-weight: 200;
        margin-bottom: 50px;
    }

.launch-time {
    display: flex;
    /*align-items: center;*/
    text-align: center;
    justify-content: center;
    align-items: center;
}

    .launch-time div {
        flex-basis: 300px;
        /*display: flex;*/
    }

        .launch-time div p {
            font-size: 150px;
            margin-bottom: -20px;
            padding-right: 30px;
            padding-left: 30px;
            /*padding-bottom: -30px;*/
        }

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

/*.content span {
        padding-top: -100px;
    }*/

.copyright {
    position: fixed;
    bottom: 0;
    text-align: center;
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    filter: saturate(50%);
}

#overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    opacity: 0.95;
    background-size: cover;
}

@media only screen and (max-width: 768px) {
    #overlay img {
        /*background-size: cover;*/
        height: 2500px;
    }

    .launch-time {
        display: flex;
        /*align-items: center;*/
        text-align: center;
        justify-content: center;
        align-items: center;
    }

        .launch-time div {
            /* flex-basis: 300px;*/
            /*display: flex;*/
        }

            .launch-time div p {
                font-size: 54px;
                margin-bottom: -5px;
                padding-right: 10px;
                padding-left: 10px;
                /*padding-bottom: -30px;*/
            }

            .launch-time div span {
                font-size: 10px;
            }

    .content h1 {
        font-size: 37px;
        font-weight: 600;
        /*text-align: center;*/
    }

    .content p {
        font-size: 12px;
        font-weight: 200;
        margin-bottom: 50px;
    }

    .logo {
        width: 90px;
        padding-top: 0px;
        padding-bottom: 20px;
        cursor: pointer;
        justify-content: space-between;
    }
}
