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

main {
    background:
        url('./images/capa.png') no-repeat center 10% / cover,
        url('./images/bg_desk.png') no-repeat center center / cover;
    min-height: 100vh;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 2vh;
    padding: 3vh 24px;
    overflow: hidden;
}

#logo {
    max-height: 11vh;
    width: auto;
}

#text_1 {
    max-height: 40vh;
    width: auto;
    max-width: 90%;
}

#text_2 {
    max-height: 28vh;
    width: auto;
    max-width: 90%;
    margin-top: 5vh;
}

@media (max-width: 768px) {
    .container {
        gap: 3vh;
        padding: 15vh 16px;
        justify-content: flex-start;
    }

    #logo {
        max-height: 6vh;
    }

    #text_1 {
        max-height: 35vh;
        max-width: 65%;
    }

    #text_2 {
        max-height: 28vh;
        max-width: 100%;
        margin-top: 8vh;
    }
}
