* {
    background: #F3F5FC;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    padding: 0;
    margin: 0;

}

header {

    width: 10vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#logo {
    width: 2em;
    padding-top: 2em;
}

main {

    display: flex;
    flex-direction: row;
    min-height: 90vh;

}



footer {

    display: block;
}

#uno {

    width: 60vw;
    padding-top: 15vh;
    display: flex;
    justify-content: center;

}

#uno-mensaje {
    width: 80%;
}

#area-texto-uno {
    width: 100%;
    resize: none;
    background-color: transparent;
    height: 50vh;
    border: none;
}

#area-texto-uno:focus {
    outline: none;
}

#botones1 {

    gap: 1em;

    padding-top: 1em;


}

#btn-area {
    display: flex;
    flex-direction: row;
    gap: 1em;
    padding: 1em;
}

#dos {

    width: auto;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;

}

#dos-mensaje {

    height: 80vh;
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2em;
    box-shadow: 0em 0em 4.4em 0.8em #0000007f;
    padding: 2em;
    text-align: center;


}

#area-texto-dos {
    width: 100%;
    height: 100%;
    resize: none;
    border: none;

}

#mensaje-on {
   
    display:none
   
}
#cuadro-aparece{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#mensaje-off{
    
}

.imagen-oculta {
    display: none;
}

#muneco {
    width: 100%;
}

button {
    border-radius: 1em;
    padding: .75em;
    width: 100%;
    border: none;
    border: 2px solid #0a3871;
    transition: border-color 250ms, background-color 250ms;
}

button:hover {
    cursor: pointer;
}

#btn-encriptar {
    background-color: #0a3871;
    color: #fff;
}

#btn-encriptar:hover {
    background-color: #4b9cda;
    color: #ffffff;

}

#btn-desencriptar {
    background-color: transparent;
    color: #0a3871;

}

#btn-desencriptar:hover {
    background-color: #d8dfe8;
    color: #0a3871;

}

#btn-copiar:hover {
    background-color: #d8dfe8;
    color: #0a3871;
}


#botones2 {
    margin-bottom: 1em;
    margin-top: 1em;
}