* {
    font-family: "";
    font-size: 30px;
    line-height: 150%;
    font-family: 'Inter', sans-serif;
}
body{
    background: #E5E5E5;
    max-width: 80%;
    /* height: 0 auto; */
    align-items: center;
  
}

header{
    display: inline-block;
    margin-top: 20px;
    margin-left: 40px;
}
main{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:center;
    width: 100%;
    top: 20px;
    margin-left: 200px;
    margin-bottom: 50px;
}

.mensagem-principal{
   min-width: 65%;
}

.input-texto{
    width: 100%;
    height: 13em;
    color: #0A3871;
    background-color: #E5E5E5;
    resize: none;
    box-shadow: 0 0 0 0; 
    border: 0 none;
    outline: 0;
}

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

.mensagem-box{
    width: 35%;
    display: flex;
    flex-direction: row;
    align-items: center;    
    justify-items: center;
    position: relative;
    
}

.mensagem{
    width: 100%; 
    margin-left: 10%;
    height: 115%;
    position: relative;
    align-items: center;
    color: #0A3871;
    padding: 10px;
    background-image: url("imagens/imgPersonagem.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 20px;
    resize: none;
    box-shadow: 0 0 0 0; 
    border: 0 none;
    outline: 0;
}

.mensagem::placeholder{
    position: absolute;
    margin: 0 5px;
    bottom: 110px;
    line-height: 1.5;
    text-align: center;
    font-size: 25px;
    color: #0A3871;
}

.informacao-painel{
    position: absolute;
    width: 75%;
    text-align: center;
    margin-left: 20%;
    color: #495057;
    line-height: 1.5;
    font-size: 15px;
    bottom: 18px;
}

.informacao-nenhuma{
    position: absolute;
    text-align: center;
    display: none;
    top:15px;
    color: #0A3871;
    width: 300px;
    line-height: 1.5;
    font-size: 25px;
    left: 35px;
}


.buttons{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.criptografar{
    font-size: 15px;
    border-color: #D8DFE8;
    width: 18rem; 
    padding: 15px 90px;
    background-color: #0A3871;
    color: #fcfafa;
    border-radius: 55px;
    transition: 500ms;
}
.criptografar:hover{
    cursor: pointer;
    background-color: #D8DFE8;
    color: #0A3871;
    border-color: #0A3871;

}

.decodificador{
    font-size: 15px;
    width: 18rem;
    color: #0A3871;
    border-color: #0A3871;
    background: #D8DFE8;
    padding: 15px 90px;
    border-radius: 25px;
    margin-left: 30px;
    transition: 500ms;
}

.decodificador:hover{
    cursor: pointer;
    background-color: #0A3871;
    color: #D8DFE8;
    border-color: #D8DFE8;

}

.copiar{
    position: absolute;
    bottom: 3px;
    margin-left: 24%;
    font-size: 15px;
    border-radius: 25px;
    padding: 15px 90px;
    color: #0A3871;
    border-color: #0A3871;
    background: #D8DFE8;
    display: none;
    transition: 500ms;

}

.copiar:hover{
    cursor: pointer;
    background-color: #0A3871;
    color: #D8DFE8;
    border-color: #D8DFE8;

}

.informacao{
    font-size: 12px;
    width: 245px;
    color: #495057;
}
.exclamacao{
    width: 10px;
    margin-right: 3px;
}

footer{
    font-size: 12px;
    text-align: center;
    
}

footer a{
    text-decoration: none;
    color: #495057;
}


@media (max-width:768px) { 
    body{
    
        background: peru;
        
    }
    main{

        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content:center;
        margin: 0 2.5rem;
        
        background: yellow;
    }
    
    .mensagem-principal{
        min-width: 50%;
        max-width: 90%;
        background: greenyellow;
     
     }

     .mensagem-box{
        width: 100%;
        justify-content: center;
    }
    .mensagem{
        min-width: 50%;
        max-width: 100%;
        margin: 0%;
        background-image: none;
    }

     .decodificador{
        margin: 10px 0;
     }

     
 } 

@media (max-width:520px) {
    .buttons{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content:center;        
    }
    .mensagem-box{
        width: 100%;
        justify-content: center;
    }
    .mensagem{
        min-width: 50%;
        max-width: 100%;
        margin: 0%;
        background-image: none;
    }
    .informacao-painel{
        margin: 0;
    }
    .copiar{
        margin: 0;
    }
    

 } 