@import url('style.css');

* {
    margin: 0;
    padding: 0;
    font-family: 'Popins', sans-serif;
    box-sizing: border-box;
}

.container {
    width: 100vw;
    height: 100vh;
    background-image: url(images/background.png);
    background-position: center;
    background-size: cover;
    padding: 0 8%;
    position: relative;
}

.logo {
    padding: 15px 0;
    cursor: pointer;
    position: absolute;
    top: 7px;
    left: 8px;
    z-index: 9999;
    width: 150px; 
    height: auto;
    opacity: 0.8; /* Reduce opacity to make it more visible */
    transition: opacity 0.3s ease-in-out; /* Add a smooth transition effect */
}

.logo:hover {
    opacity: 1; /* Increase opacity on hover for a more attractive effect */
}

.content {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: #fff;
}

.content h1 {
    font-size: 64px;
    font-weight: 600;
}

.content h1 span {
    color: #ff3753;
}

.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 {
    margin-left: 10px;
    width: 15px;
    height: 15px;
}

.launch-time {
    display: flex;
}

.launch-time div {
    flex-basis: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.launch-time div p {
    font-size: 60px;
    margin-bottom: -8px;
}

.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;
    }
}


@media (max-width: 768px) {
    .content h1 {
        font-size: 48px;
    }

    .content button {
        font-size: 14px;
    }

    .launch-time div p {
        font-size: 40px;
    }

    .rocket {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 36px;
    }

    .content button {
        font-size: 12px;
    }

    .launch-time div p {
        font-size: 30px;
    }

    .rocket {
        width: 150px;
    }
}