* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(cover.png);
    background-size: cover;
    background-repeat: repeat;
}

.header {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.logo {
    width: 35%;
    background-color: #FFFFFF;
    border-radius: 100px;
    border: 5px solid #F00;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
}

#rain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon {
    width: 15%;
}

#container-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px;
    height: 400px;
    border-radius: 400px;
    border: 5px solid #004AAD;
    overflow: hidden;
}

#countdown {
    text-align: center;
    margin-top: 20px;
    width: 150px;
    color:#f2fe49;
    font-family: 'Hachi Maru Pop', cursive;
    font-size: 25px;
    font-style: normal;
    font-weight: bolder;
    line-height: normal;
    border-radius: 50px;
    padding: 20px;
    background-color: #004AAD;
    opacity: 60%;
}

#myVideo {
    margin-top: -100px;
    width: 800px;
    position: relative;
    left: 0;
    top: 0;
    z-index: -1;
}

.rain {
    color: #004AAD;
    text-align: center;
    font-family: 'Hachi Maru Pop', cursive;
    font-size: 40px;
    font-style: normal;
    font-weight: bolder;
    line-height: normal;
}




@media all and (max-width: 900px){
    .logo {
        width: 70%;
    }

    #container-countdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 300px;
        height: 300px;
        border-radius: 200px;
        border: 5px solid #229B4B;
        overflow: hidden;
    }

    .icon {
        width: 35%;
    }

    #myVideo {
        margin-top: -100px;
        width: 800px;
        position: relative;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .rain {
        font-size: 40px;
    }

    #countdown {
        text-align: center;
        font-size: 20px;
        padding: 15px;
    }
}




@media all and (max-width: 520px){
    .logo {
        width: 70%;
    }

    #container-countdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 300px;
        height: 300px;
        border-radius: 200px;
        border: 5px solid #004AAD;
        overflow: hidden;
    }

    .icon {
        width: 50%;
    }

    #myVideo {
        margin-top: -100px;
        width: 800px;
        position: relative;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .rain {
        font-size: 30px;
    }

    #countdown {
        text-align: center;
        font-size: 20px;
        padding: 15px;
    }
}