body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #0A0F1E;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Ensures content is at the bottom */
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url('../img/world_background.png');
    background-size: cover;
    background-position: center;
}

.logo {
    width: 306px;
    height: 120px;
    background-image: url('../img/Grupo_2269.png');
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: auto; /* Pushes logo up */
}

.soon {
    text-align: center;
    font-size: 35px;
    letter-spacing: 35px;
    color: #FFFFFF;
    text-shadow: 0px 0px 13px #1183F5;
    text-transform: uppercase;
    margin-bottom: 20px; /* Adds space between the text and the logo below */
}

.logo2 {
    width: 132px;
    height: 51px;
    background-image: url('../img/Grupo_2265.png');
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 50px; /* Adjusts distance from the bottom */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .content {
        padding: 20px;
    }

    .logo {
        width: 200px; /* Resize logo for mobile */
        height: auto;
    }

    .soon {
        font-size: 25px; /* Adjust font size for mobile */
        letter-spacing: 15px;
    }

    .logo2 {
        width: 100px; /* Resize bottom logo for mobile */
        height: auto;
    }
}
