
body{         
    background-color: #CCC9BB;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Roboto Mono', monospace;
}

.header{       
    display: flex;              
    flex-direction: row;
    justify-content: space-evenly;    
    position: absolute;
    left: 50px;
    top: 20px;
}

.header img{
    width: 25px;
}

.header p{
    padding: 10px 30px;
    font-weight: 600;
}

.main{        
    height: 100vh;
    display: flex;    
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

.caja{        
    height: 100%;
    width: 90%;
    display: flex;    
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center; 
}

.caja-principal{              
    display: inline-block;
    width: 60%;    
    height: 85%;    
    display: flex;
    flex-direction: column;
    justify-content: center;       
}

.caja-input{
    border: none;
    width: 90%;
    height: 100%;
    padding: 10px;    
    background-color: transparent;
    outline: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    resize: none;     
    color: #975d3e;
    display: block;
    margin: 0 auto 10px auto;
}

.caja-input::placeholder{    
    color: #68554d;
}

.caja-input:hover{
    cursor: pointer;
}

.caja-input:focus{
    cursor: text;    
}

.caja-opciones{
    width: 90%;    
    display: block;
    margin: 0 auto;
}

.caja-informacion{    
    display: flex;
    font-size: 10px;
    margin-bottom: 10px;    
}

.caja-informacion h4{    
    padding: 2.5px 10px;
}

.caja-botones{    
    width: 100%;    
    text-align: center;
}

.boton-encriptar{
    background-color: #9C7159;
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    font-size: 12px;
    padding: 10px 20px;
    width: 40%;
    height: 40px;
}

.boton-desencriptar{
    background-color: #BEB59E;
    border: 1px solid #9C7159;
    border-radius: 12px;
    color: #9C7159;
    cursor: pointer;
    font-size: 12px;    
    padding: 10px 20px;
    width: 40%;
    height: 40px;
}

.caja-resultado{
    display: inline-block;
    width: 25%;     
    height: 95%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;   
    box-shadow: 2px 2px 10px #a2a2a2;
}

.imagen-resultado{
    padding: 0 20px;
}

.imagen-resultado img{    
    width: 100%;    
}

.texto-resultado{
    padding: 0 10px;
    margin-top: 20px;  
}

.texto-princripal{
    font-size: 20px;
    color: #9C7159;
    font-weight: 900;
}

.texto-secundario{
    font-size: 15px;        
    color: #9C7159;
    margin-top: 20px;
}

.boton-copiar{
    background-color: #9C7159;
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    font-size: 12px;    
    padding: 10px 20px;
    width: 80%;
    height: 40px;    
    margin-bottom: 25px;
    display: none;
}

.footer{          
    width: 100px;      
    position: absolute;
    left: 10px;
    bottom: 5px; 
}

.footer-imagenes{    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-imagenes img{
    width: 20px;
    opacity: 0.5;
}

.footer-imagenes img:hover {
    opacity: 1;
    cursor: pointer;
}


@media screen and (max-width:768px){

    .caja{        
        flex-direction: column;  
        justify-content: space-evenly;        
    }

    .caja-principal{
        height: 70%;
        width: 100%;
        margin-top: 40px;        
    }

    .caja-input{
        width: 100%;                     
    }

    .caja-opciones{
        width: 100%;
    }

    .caja-resultado{        
        width: 90%;
        padding: 0 20px;
        margin: 10px 0;  
        height: auto;      
    }

    .imagen-resultado img{    
        display: none;
    }

    .texto-resultado{
        margin-top: 0;
        padding: 20px 0;                      
    }
}