@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
}

body {
    background: url('background.png') center center / cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    //background: rgba(0, 0, 30, 0.6);
}

.container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo-img {
    max-width: 410px;
    margin-bottom: 20px;
}

.coming-soon {
    font-size: 90px;
    font-weight: 700;
    margin: 15px 0;
    background: linear-gradient(90deg, #a5dbff, #1d78ff);
    -webkit-background-clip: text;
    color: transparent;
}

.description {
    font-size: 25px;
    font-weight: 300;
    //max-width: 600px;
    margin: 10px auto 30px;
}

.description strong {
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1dbeff;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #17a0d9;
}

.small-info {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.9;
}

footer {
    position: absolute;
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.7;
}

.powered-by {
    font-size: 12px;
}

.footer-img {
    width: 120px;
}

@media screen and (max-width: 768px) {
    .logo-img {
        max-width: 260px; /* adjust this value as needed for smaller screens */
        margin-bottom: 15px;
    }

    .coming-soon {
        font-size: 48px; /* smaller heading on mobile */
    }

    .description {
        font-size: 18px; /* smaller description text */
        padding: 0 10px; /* add padding to avoid edges */
    }

    .btn {
        padding: 10px 20px; /* smaller button padding */
        font-size: 14px;
    }

    .footer-img {
        width: 100px; /* smaller footer logo */
    }
}

