*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', 'sans-serif';
    box-sizing: border-box;
}

.container{
    width: 100vw;
    height: 100vh;
    background-image: url(assets/zaixs.jpg);
    background-position: center;
    background-size: cover;
    padding: 0 8%;
}

.logo{
    width: 120px;
    padding: 20px;
}

.content{
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: white;
}

.content h1{
    font-size: 64px;
    font-weight: 600;
}

.content h1 span{
    color: #ff3753;
}

.launch-time{
    display: flex;
    margin-top: 1rem;
    color: #000000;
}

.launch-time div{
    flex-basis: 100px;
}

.launch-time div p{
    font-size: 60px;
    margin-bottom: 1rem;
}

.launch-time div span{
    font-size: 20px;
}
 
.rocket{
    width: 250px;
    position: absolute;
    right: 10%;
    bottom: 0;
    animation: rocket 4s linear infinite;
}

@keyframes rocket{
    0%{
        bottom: 0;
        opacity: 0;
    }

    100%{
        bottom: 105%;
        opacity: 1;
    }
}

@media screen and (max-width: 426px){
    .content h1{
        font-size: 50px;
    }
    
    .launch-time div p{
        font-size: 40px;
    }

    .launch-time div span{
        font-size: 15px;
    }
     
    .rocket{
        width: 200px;
        right: 25%;
    }    
}

@media screen and (max-width: 321px){  
    .rocket{
        width: 175px;
        right: 22%;
    }    
}
