.matrix {
    width: 100%;
    height: 100%;
    transform: rotate(143deg);
    position: fixed;
    bottom: -240px;
    right: -280px;
    z-index: 0;
}


.main {
    width: 100vw;
    height: 100vh;
    background: var(--fondo);
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.main .header {
    width: 60%;
    height: 10%;
    background: var(--fondoTransparente);
    border: 2px solid var(--verdeQbox);
    border-bottom: none;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

#contLogo {
    height: 15%;
    position: absolute;
    top: -80%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;

}

.main .contPrincipal {
    width: 60%;
    height: 80%;
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: var(--fondoTransparente);
    border: 2px solid var(--verdeQbox);
    display: flex;
    justify-content: center;
    align-content: space-around;
    flex-wrap: wrap;
}

.main .contPrincipal .titulo {
    width: 100%;
    text-align: center;
    font-size: 2em;
    color: #f7b800;
}

.main .contPrincipal .svg {
    width: 60%;
}

@media screen and (max-width: 575px) {
    .main .header {
        width: 96%;
    }

    .main .contPrincipal {
        width: 96%;
    }
}

/* Estilos para teléfonos móviles pequeños (landscape) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    .main .header {
        width: 96%;
    }

    .main .contPrincipal {
        width: 96%;
    }
}