*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
.container{
    width: 100%;
    height: 100vh;
    background-image: url(image/image1.jpg);
    background-position: center;
    background-size: cover;
    padding: 0 5%;
    position: relative;
    background-repeat: no-repeat;

}
.content{
    top: 35%;
    position: absolute;
    color: white;
}
.content h2{
    font-size: 40px;
    font-weight: 5000;
}
.content p{
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
}
.content span{
    color: gold;
}
.content button {
    background-color: red;
    border: none;
    border-radius: 10px;
    outline: none;
    padding: 12px;
    color: white;
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-weight: 500;
}
.content a{
    text-decoration: none;
}
.content a:hover{
    color: green;
}
.logo{
    cursor: pointer;
    width: 120px;
    padding: 20px 0;
}
.timer{
    display: flex;
}
.timer div{
    flex-basis: 100px;
}
.timer div p{
    font-size: 60px;
    margin-bottom: 5px;
}
.rocket{
    position: absolute;
    width: 250px;
    bottom: 0;
    right: 20px ;
    animation: rocket 4s linear infinite;
}
@keyframes rocket{
    0%{
        bottom: 0;
        opacity: 0;
    }
    100%{
        bottom: 100%;
        opacity: 1;
    }
}