* {

    margin: 0;
    padding: 0;
    font-family: 'poppins', 'sans-serif';
    box-sizing: border-box;
}

.container {

    width: 100vw;
    height: 100vh;
    background-image: url(img/universo.jpg);
    background-position: center;
    background-size:cover;
    padding: 0 8%;
    position: relative;
   
}

.logo {

    width:120px;
    padding:20px 0;
    cursor: pointer;
}

.content {

    top:50%;
    position: absolute;
    transform: translateY(-50%);
    color: #ffffff;

}

.content h1{

    font-size: 64px;
    font-weight: 500;


}

.content h1  span {

    color: #948686;

}

.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;
}

.launch-time{

    display:flex;
}

.launch-time div{

    flex-basis: 100px;
}

.launch-time div p{

    font-size: 60px;
    margin-bottom: -14px;

}

.foguete{

    width: 350px;
    position: absolute;
    right: 5%;
    bottom:0px;
    animation: foguete 8s infinite;

}

@keyframes foguete {

    0% {
        bottom: 0%;
        opacity: 0%;
    }

    100%{

        bottom: 100%;
        opacity: 1;
    }
    
}