
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.container{
    max-width: 100vw;
    height: 100vh;
    background-image: url(images/background.png);
    background-position: center;
    background-size: cover;
    padding: 0 8%;
    position: relative;

}

.logo{
    width: 120px;
    padding: 20px 0;
    cursor: pointer;
}

.content{
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: #fff;
}

.content h1{
    
    font-size: 64px;
    font-weight: 600;

}
@media(min-width: 360px) and (max-width: 700px){
    .content h1{
        font-size: 30px;
        font-weight: 400;
    }
}
@media(min-width: 300px) and (max-width: 700px){
    .hours{
        margin-right: 20px;
        text-align: center;
        font-size: 16px;
    }
    .days{
        margin-right: 20px;
        font-size: 16px;
    }
    .minutes{
        margin-right: 20px;
        font-size: 16px;
    }
    .seconds{
        margin-right: 30px;
        font-size: 15px;
        margin-top: 60px;
        
    }
    #seconds{
        font-size: 15px;
        margin-top: 10px;
        
    }
    .me{
        font-size: 20px;
        background-color: green;
        color: white;
    }
    span{
        color: green;
    }
}

.content h1 span{
    /* color: #ff3753; */
    color: green;
}

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

.content button img{
    width: 15px;
    margin-left: 10px;
}

.launch-time{
    display: flex;
}
.launch-time div{
    flex-basis: 100px;
}
.launch-time div p{
    font-size: 60px;
    margin-bottom: -14px;
}
.rocket{
    width: 250px;
    position: absolute;
    right: 25%;
    bottom: 0;
    animation: rocket 4s linear infinite;

}
@keyframes rocket{
    0%{
        bottom: 0;
        opacity: 0;
    }
    100%{
        bottom: 105%;
        opacity: 1;
    }
}