* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: #000;
}

.containers {
    padding: 20px;
    max-width: 100%;
    width: 100%;
    min-width: 100%;
}

.coming-soon {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 30px;
}

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 30px; */
    /* flex-wrap: wrap; */
    margin-bottom: 20px;
}

.logo-img,
.illustration-img {
    max-height: 100%;
    object-fit: contain;
}

.message {
    font-size: 22px;
    margin-top: 20px;
    color: #333;
    line-height: 35px;
}

.logo-left {
    width: 50%;
}

.logo-right {
    width: 50%;
}



@media only screen and (min-width: 1024px) and (max-width: 1399px) {
    .coming-soon {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .message {
        font-size: 18px;
        margin-top: 20px;
        color: #333;
        line-height: 25px;
    }

    .logo-img,
    .illustration-img {
        max-height: 100%;
        object-fit: contain;
        width: 100%;
    }

    .logo-right {
        width: 50%;
        height: 300px;
    }

    .logo-left {
        width: 50%;
        height: 130px;
    }

}

@media only screen and (max-width: 767px) {

    .logo-img,
    .illustration-img {
        max-height: 100%;
        object-fit: contain;
        width: 100%;
    }

    .message {
        font-size: 10px;
        margin-top: 20px;
        color: #333;
        line-height: 25px;
    }

    .coming-soon {
        font-size: 45px;
        font-weight: bold;
        margin-bottom: 30px;
    }
}