

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'JetBrains Mono', monospace;
}

.container{
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(150deg, rgba(0,0,0,0.85), rgba(180,0,0,0.85)), url(images/background.jpg);
    background-position: center;
    background-size: cover;
    padding: 0 8%;
    position: relative;
}

.logo{
    width: 200px;
    padding: 1px 1px;
    cursor: pointer;
    margin-left: -30px;
    margin-bottom: 5px;
}

.content{
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: #fff;
}

.content h1{
    font-size: 64px;
    font-weight: 600;
}

.content h1 span{
    color: #b40000;
}

.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;
}

.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;
    }
}




/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container{
        padding: 0 5%;
    }

    .logo{
        width: 150px;
        margin-left: 0;
    }

    .content h1{
        font-size: 36px;
    }

    .content{
        width: 100%;
    }

    .launch-time{
        flex-wrap: wrap;
        gap: 15px;
    }

    .launch-time div{
        flex-basis: 70px;
    }

    .launch-time div p{
        font-size: 36px;
        margin-bottom: -8px;
    }

    .rocket{
        width: 150px;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .content h1{
        font-size: 24px;
    }

    .content button{
        padding: 10px 20px;
        font-size: 14px;
    }

    .launch-time div{
        flex-basis: 60px;
    }

    .launch-time div p{
        font-size: 24px;
        margin-bottom: -6px;
    }

    .rocket{
        width: 100px;
        right: 2%;
    }
}