* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body{
    background-color: #F3F5FC;
    box-sizing: border-box;
}
header{
    width: auto;
    height: auto;
    padding: 20px;
}
.logo:hover{
    transition: 1s;
    transform: scale(1.5);
}
main {
    width: auto;
    height: auto;
    display: flex;        
}
.primera_columna{
    margin: 40px;
    width: 70%;
    height: 100%;
    margin-top: 100px;       
}
.texto_ingreso{
    height: 450px;
    width: 90%;
    padding: 10%;
    resize: none;
    font-size: 28px;
    background: transparent;
    border: none;
    outline: none; 
    color:#0A3871;    
}
::placeholder {
    color: #0A3871;
    font-weight:lighter;
}
.informacion{
    text-align: left;    
}
.img_alerta{
    position:absolute;
    width: 20px;
    height: 20px;
}
.parrafo_informacion{
    margin-left: 30px;
    color: #495057;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}
.botones{
    margin: 30px;
    display: flex;
    justify-content:space-between;
    text-align: center;
} 
.encriptar{
    width: 45%;
    height:50px;
    border-radius: 15px;
    font-weight: 400;
    font-size: 20px;
    line-height: 19px;
    color: white;
    border: 1px solid #0A3871;
    background: #0A3871;
    transition: 1s all;
    cursor:pointer;
}
.encriptar:hover{
    background: #0f4583;
    transform: scale(1.2);
}
.desencriptar{
    width: 45%;
    height: 50px;
    border-radius: 15px;
    font-weight: 400;
    font-size: 20px;
    line-height: 19px;
    color: #0A3871;
    border: 1px solid #0A3871;
    transition: 1s all;
    cursor:pointer;
}
.desencriptar:hover{
    background: #dbe8f7;
    transform: scale(1.2);
}
.segunda_columna{
    width: 25%;
    margin: 40px;
    margin-top: 30px;
    background-color: transparent;
} 
.parrafos_segunda_columna{
    width: 70%;
    text-align: center;    
    margin-left: 15%;     
}
.h2{
    color: #343A40;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;      
}
.h3{
    margin-top: 5%;
    color: #495057;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}
.caja{
    width: auto;
    height: 700px;
    padding-top: 5%;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.5);
    background-color: white;
}
.texto_egreso{  
    background-image: url("img/Muñeco.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 250px;
    height: 450px; 
    width: 70%;
    margin-top: 5%;    
    resize: none;
    font-size: 28px;
    border: none;
    outline: none;
    color: #495057;
    text-align: center;    
}
.botonCopiar{
    width: 75%;
    height: 50px;    
    margin-left: 12%;
    margin-top: 25%;
    border-radius: 15px;
    font-weight: 400;
    font-size: 20px;
    line-height: 19px;
    color: #0A3871;
    border: 1px solid #0A3871;
    transition: 1s all;
    cursor:pointer;
}
.botonCopiar:hover{
    background: #dbe8f7;
    transform: scale(1.2);
}
footer {
    width: auto;
    height: auto;
    text-align: center;
    margin-top: 10px;
    color: black;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
}


@media only screen and (max-width: 690px) {
    body{
        display: flex;
        flex-direction: column;
    }
    main{
        flex-direction: column;
    }
    .encriptar{    
        font-size: 15px;
    }
    .desencriptar{
        font-size: 15px;
    }
    .segunda_columna {
        width: 80vw;
    }
}