* {
    margin: 0;
    padding: 0;
    font-family: 'poppings', sans-serif;
    box-sizing: border-box;
    
    
}
.container{
    width: 100vw;
    height: 100vh;
    background-image: url(https://images2.alphacoders.com/205/205590.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: whitesmoke;
    margin: 50px; /* Adjust the margin as needed */
    
}
.content h1{
    font-size: 64px;
    font-weight: 600;
}
.content span{
    color:  #709A75; 
}

.launch-time{
    display: flex;

}
.launch-time div{
    flex-basis: 100px;
    
}
.launch-time p{
    font-size: 60px;
    margin-bottom: px;
    border-color: aliceblue;
    
}
.xwing {
    width: 475px;
    position: absolute;
    right: 12.4%;
    bottom: 0;  
    animation: xwing 7s linear infinite;
}

@keyframes xwing{
    0%{
        bottom: 0;
        opacity: 0;
    }
    100%{
        bottom: 105%;
        opacity: 1;
    }
}
