body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #58748e; /* fallback for old browsers */
    background: rgb(220, 230, 241);
    background: linear-gradient(90deg, rgb(199, 215, 232) 0%, rgb(88, 116, 142) 50%);
    /* background: linear-gradient(90deg,  rgb(88, 116, 142) 50%, rgb(199, 215, 232) 0%); */
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;      
    margin: 0;
}
.main-container {
    margin-top: 180px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
}

.logo-container {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
    width: 400px;
    height: 200px;
}

.main-logo {
    max-width: 100%;
    height: auto;
}

.container_landing {
    display: flex;
    gap: 25px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.box {
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
    /* border: #6a728b 1px solid; */
    transition: transform 0.3s ease-in-out;
}
.box:hover {
    transform: scale(1.1);
    background-color: #ffffff;
}

.img {
    width: 180px;
    height: 180px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    /* border-radius: 20px; */
    /* border: #6a728b 1px solid; */
    transition: transform 0.3s ease-in-out;
}

/* Media query for mobile devices */
@media (max-width: 768px) {

    .container_landing {
        flex-direction: column;
        position: static;
        transform: none;
        gap: 15px;
        top: auto;
        left: auto;
        align-items: center; /* Center the container on mobile */

    }

    .box {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .logo-container {
        max-width: 100%;
        text-align: center;
        margin-bottom: 32px;
        width: auto;
        height: auto;
    }

    .main-logo {
        display: none; /* Hide the original logo on mobile */
    }

    .mobile-logo {
        display: block !important; /* Show the mobile logo */
        max-width: 150px;
        height: auto;
    }
}
