* {
    margin: 0;
    padding: 0;
    font-family:'poppins', sans-serif;
    box-sizing: border-box;
}
.container {
    width: 100vw;
    height: 100vh;
    background-image: url(background.png);
    background-position: center;
    background-size: cover;
    padding: 0 8%;
    position: relative;
    
    
}
.content {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: #ffffff;
}
.content h1 {
    font-size: 64px;
    font-weight: 600;
}
.content h1 span {
    color: #ff3753;
}
.content button {
    background: transparent;
    border: 2px solid #fff;
    outline: none;
    padding: 12px 25px;
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: 30px;
    cursor: pointer;
}
.launching-time {
    display: flex;
}
.launching-time div{
    flex-basis: 200px;
}
.launching-time div p{
    font-size: 60px;
    margin-bottom: -14px;
}
.launching-time span{
    
}
.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;
    }
}
.link {
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .launching-time div {
        margin: 0 5px;
    }
    
    button {
        padding: 8px 16px;
    }
}