*
{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
    
}
.container{
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(4,9,35,0.6),rgba(4,9,35,0.6)),url(images/2.jpg);
    background-position: center;
    background-size: cover;
    padding: 0 8%;
    position: relative;
}
.content{
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: #fff;
    
    
}
.content p{
    font-size: 24px;
    margin-bottom: 14px;
}
.content h1{
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 11px;
    
    
}
.content h1 span{
    color: #ff2d2d;
    
}
.content p span{
    color: #ff2d2d;
}

.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: 10%;
    bottom: 0%;
    animation: rocket 4s linear infinite;
    
}
@keyframes rocket{
    0%{
        bottom: 0;
        opacity: 0;
    }
    100%{
        bottom: 105%;
        opacity: 1;
    }
}































