@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Radley&display=swap');

body, html{
    height: 100%;
    background-color: #F4F1E8;
    font-family: Poppins, sans-serif;
}

* {
    margin: 0;
    padding: 0;
}


.container {
    display: flex;
    height: 100vh;
}

.column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon{
    font-size: 5rem;
}

.coming-soon img {
    height: 1em; 
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative; 
}

.logo {
    max-width: 60%; 
    max-height: 60%; 
}


.hanging-light {
    position: absolute;
    top: 0;
    height: 45%; 
    max-width: none; 
    opacity: 0.3;
    mix-blend-mode: multiply;
}

.bottom-text {
    font-family: Radley, sans-serif;
    font-size: 25px;
    position: fixed;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}


@media (max-width: 1440px) {
    .coming-soon{
        font-size: 4rem;
    }
    
    .coming-soon img {
        height: 0.8em; 
    }
}

@media (max-width: 1110px) {
    .container {
        flex-direction: column;
    }

    .column {
        flex: auto;
    }

    .column:first-child {
        order: 2;
    }

    .column:nth-child(2) {
        order: 1;
    }

    .bottom-text {
        margin-top: 50px;
        font-size: 20px; /* Adjust font size for smaller screens */
        bottom: 0;
    }

    .hanging-light {
        position: absolute;
        top: 0;
        height: 100%; 
        max-width: 100%; 
        opacity: 0.3;
        mix-blend-mode: multiply;
    }

    .coming-soon{
        text-align: center;
        margin-bottom: 150px;
    }

    .logo {
        margin-top: 10rem;
        max-width: 65%; 
        max-height: 65%; 
    }
    
    
}


@media (max-width: 700px) {
    .bottom-text {
        font-size: 15px; /* Adjust font size for smaller screens */
    }

    .hanging-light {
        position: absolute;
        top: 0;
        height: 100%; 
        max-width: 100%; 
        opacity: 0.3;
        mix-blend-mode: multiply;
    }

    .coming-soon{
        font-size: 3rem;
        text-align: center;
    }
    
}

@media (max-width: 410px) {

    .bottom-text {
        font-size: 12px; /* Adjust font size for smaller screens */
    }

    .coming-soon{
        font-size: 2.5rem;
        text-align: center;
    }
    
}
