*{
    margin: 0;
    padding:0;
    font-family:'Courier New', Courier, monospace;
    box-sizing: border-box;
}
.container{
    width:100vw;
    height:100vh;
    background-image:url(1729334840439.jpg) ;
    background-position: center;
    background-size: cover;
    padding:0 8%;
}
.logo{
    width:50px;
    padding:20px 0;
    cursor: pointer;
}
.content{
    top:50%;
    position: absolute;
    transform:translateY(-50%);
    color:#fff;
}
.content h1 span{
    color:rgba(239, 15, 15, 0.467);

}
.content button{
    background:transparent;
    border:2px solid #fff;
    outline:none;
    padding:12px 25px;
    color:#fff;
    align-items: center;
}
.content button img{
    width: 30px;
    margin-left: 10px;
    
}
.launch-time{
    display: flex;
}
.launch-time div{
    flex-basis: 100px;
}
.launch-time div p{
    font-size:40px;
    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;
    }
}
