body {
    background-image: url('../images/FondoLogin.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 70vh;
    width: 100vw;
}

.nota-container {
    display: flex;
    justify-content: center;
    align-items: end;
}

.nota {
    display: flex;
    justify-content: center;
    align-items: start !important;
    background-color: rgba(19, 54, 87, 0.9);
    margin-top: 30px;
    padding: 8px 25px;
    border-radius: 15px;
    width: 70vw;
    /* height: auto !important; */
}

h2 {
    display: flex;
    justify-content: center;
    color: #d0d0d0;
    align-items: start;
    line-height: 2;
    text-align: center;
    font-family: 'Red Hat Display', Helvetica, sans-serif;
}

a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 60px;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s;
}

a:hover {
    transform: scale(1.05);
}

.clickable-option {
    height: 50vh;
    margin: 20px;
    box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.left-column {
    display: inline-flex;
    justify-content: center;
    width: 50vw;
}

.right-column {
    display: inline-flex;
    justify-content: center;
    width: 50vw;
}

@media (max-width: 1175px) {
    .container {
        flex-direction: column;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    .left-column,
    .right-column {
        width: 100%;
        height: auto;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    .clickable-option {
        width: 80%;
        height: auto;
        max-width: 300px;
    }

    .nota-container {
        padding: 10px;
    }

    .nota {
        display: none;
    }

    .nota h2 {
        font-size: 1rem;
    }

    a {
        margin: 20px;
    }

    body {
        background-image: url('../images/FondoLogin90.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
}
