*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

.container
{
    width: 100vw;
    height: 100vh;
    background-image: url(images/background.png);
    background-size: cover;
    background-position: center;
    padding: 0px 8%;
    position: relative;
}

.logo {
    width: 120px;
    padding: 20px 0px;
    cursor: pointer;
    
}

.content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.content h1 {
    font-size: 64px;
    font-weight: 600;
}

.content h1 span {
    color: #fdc631;
}

.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;
    
    
}

.content button img {
    width: 15px;
    margin-left: 10px;
}

.content button:hover {
    background: #fff;
    color: #000;
}

.launch-time {
    display: flex;
}

.launch-time div {
    flex-basis: 100px;
    text-align: center;
}

.launch-time div p {
    font-size: 60px;
    margin-bottom: 10px;
}

.rocket {
    width: 250px;
    position: absolute;
    right: 10%;
    bottom: 0;
    animation: rocket 4s linear infinite;
}

@keyframes rocket {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 100%;
        opacity: 1;
    }
}
