* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    color: aliceblue;
}

.container{
    width: 100vw;
    height: 100vh;
    background-image: url("https://images.pexels.com/photos/3182773/pexels-photo-3182773.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-size: cover;
    padding: 0 8%;
    position: relative;
}

.logo{
    width: 120px;
    padding: 20px 0;
    cursor: pointer;
}

.zoom {
    transition: transform 0.3s; 
}

.zoom:hover {
    transform: scale(1.5); 
}

.content{
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: #FFF;
}

.content h1{
    font-size: 64px;
    font-weight: 500;
    color: chocolate;
}

.content h1 span{color: #ff3753;}

.content button{
    background: transparent;
    border: 2px solid #ff3753;
    outline: none;
    padding: 12px 25px;
    color: #FFF;
    display: flex;
    align-items: center;
    margin-top: 30px;
    cursor: pointer;
}

.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: 10%;
    bottom: 0;
    color: sandybrown;
    animation: rocket 4s linear infinite;
}

@keyframes rocket{
    0%{
        bottom: 0;
        opacity: 0;
    }
    100%{
        bottom: 105%;
        opacity: 1;
    }
}

#days{
    margin-right: 20px;
}