

/*=========
Font load
===========*/

@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Manrope:wght@200..800&family=Whisper&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.content {
    background-color: rgba(0, 0, 0, 0.6); /* Transparent overlay */
    padding: 20px;
    border-radius: 10px;
    color: white;
    max-width: 1200px;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }

    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    .logo {
        max-width: 120px;
    }
}
