body{
    font-family: 'Inter';
    font-style: normal;
    background: #F3F5FC;

}

.encabezado, .contenido, .contenido-lateral, .pie-pagina{
    padding: 1em 2em;
}

.contenido, .contenido-lateral, .pie-pagina{
    float: left;
    box-sizing: border-box;
}

.encabezado{
    height: 6vh;
    padding: 1% 2% 0;
}

.contenido{
    width: 60%;
    height: 85vh;
    padding-left: 5%;
}

.texto{
    width: 100%;
    height: 75%;
    resize: none;

    background: none;
    border: none;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    color: #0A3871;
}

.texto::placeholder{
    color: #0A3871;
}

.texto:focus{
    outline: none;
}

.frame1{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 20px;
    padding: 3% 0;
}

.info:hover{
    font-weight: bold;
}

.frame3{
    height: 10vh;
}
#encriptar, #desencriptar{
    font-family: 'Inter';
    font-style: normal;
    font-size: 16px;
    width: 45%;
    max-width: 328px;
    height: 100%;
    max-height: 67px;
    border-radius: 24px;
}

#encriptar:hover, #desencriptar:hover, #copiar:hover{
    transform: scale(1.075);
}

#encriptar:active, #desencriptar:active, #copiar:active{
    opacity: 50%;
}

#encriptar{
    background: #0A3871;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

#desencriptar{
    margin-left: 3%;
}

#desencriptar, #copiar{
    background: #D8DFE8;
    border: 1px solid #0A3871;
    color: #0A3871;
}

.contenido-lateral{
    width: 40%;
    max-width: 400px;
    height: 85vh;

    background: #FFFFFF;
    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
    border-radius: 32px;
}

.chica{
    width: 90%;
    padding: 10% 5% 0;
}

.mensaje1{
    padding: 3% 0;

    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #343A40;
}

.mensaje2{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #495057;
}

#texto-resultado{
    width: 100%;
    height: 65vh;
    background: none;
    border: none;
    resize: none;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: #495057;
}

#texto-resultado:focus{
    outline: none;
}

#copiar{
    font-family: 'Inter';
    font-style: normal;
    font-size: 16px;
    width: 100%;
    height: 10vh;
    max-height: 67px;
    margin-top: 5%;
    border-radius: 24px;
}

.pie-pagina{
    width: 100%;
    height: 5vh;
    text-align: center;
}

.invisible{
    display: none;
}

@media screen and (max-width: 768px){
    .encabezado, .contenido, .contenido-lateral, .pie-pagina{
        width: 100%;
    }
    .encabezado{
        height: 10vh;
    }
    #logo{
        padding: 5% 2% 0;
    }
    .contenido{
        height: auto;
    }
    .texto{
        height: 50vh;
    }
    .info:hover{
        font-weight: normal;
    }
    .frame3{
        width: 100%;
    }
    #encriptar:hover, #desencriptar:hover, #copiar:hover{
        transform: none;
    }
    .contenido-lateral{
        margin: 0 5%;
        width: 90%;
        height: auto;
        max-width: none;
    }
    .chica{
        display: none;
    }
    #texto-resultado{
        height: auto;
        max-height: 180px;
    }
}

@media screen and (max-width: 375px){
    .texto{
        height: 30vh;
    }
    .frame3{
        width: 100%;
        height: 150px;
        padding-bottom: 30px;
    }
    #encriptar, #desencriptar{
        width: 100%;
        max-width: none;
        margin: 3% 5%;
    }
}