body{
    background: #cccccc;
}
*{
    margin: 0;
    padding: 0;
}
.cabecalho{
    display: flex;
    justify-content: space-between;
    padding: 3%;
}
.cabecalho h1{
    color: darkblue;
    margin-right: 8%;
}
.cabecalho img{
    max-width: 70px;
    max-height: 70px;
    width: auto;
    height: auto;
    margin-left: 3%;
}
.input-output{
    display: flex;
    justify-content: space-between;
    padding: 2%;
}
#input-texto{
    width: 345px;
    height: 330px;
    font-size: 20px;
    color:darkblue;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: 0;
    padding: 20px;
    text-transform: lowercase;
    font-weight: bolder;
}
.alert-minusculo{
    display: flex;
    margin-top: 0;
    
}
.input p{
    width: 228px;
    height: 18px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #495057;
    opacity: 0.8;
    flex: none;
    order: 1;
    flex-grow: 0;
}
.exclamacao{
    color: #495057;
}
#output{
    display: flex;
    flex-direction: column;
    border: 3px solid darkblue;
    border-radius: 20px;
    width: 350px;
    height: 400px;
    margin-right: 3%;
    text-align: center;
    background: #fefefe;
    font-size: 20px;
    padding: 10px;
    font-weight: bolder;
}
#output h2{
    text-align: center;
    font-size: 25px;
    color: darkblue;
}
#output span{
    font-size: 16px;
    text-align: center;
}
#output img{
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    margin-top: 4%;
}
.botoes button{
    border: 2px solid darkblue;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bolder;
    color: rgb(8, 5, 27);
    width: 150px;
    height: 50px;
    margin-left: 6%;
    cursor: pointer;
    font-size: 16px;
}
.todos-botoes{
    display: flex;
    justify-content: space-between;
    
}
.botoes{
    display: flex;
    justify-content: space-between;
}
.botao-copiar{
    border: 2px solid darkblue;
    border-radius: 10px;
    text-decoration: none;
    color: rgb(8, 5, 27);
    width: 150px;
    height: 50px;
    margin-bottom: 10%;
    cursor: pointer;
    background-color:springgreen;
    font-weight: bolder;
    font-size: 16px;
    margin-right: 12%;
}
.todos-botoes button:hover{
    border: 2px solid aquamarine;
    transition: 500ms all;
    transform: scale(1.1);
    box-shadow: 10px 10px 5px black;
}
.botao-crip{
    background-color: deepskyblue;
}
.botao-descrip{
    background-color: tomato;
}
.rodape{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2%;
    margin-top: 15px;
    background:linear-gradient(#b6b5b5 10%, #495057 90%);
}
.icons ion-icon{
    width: 25px;
    height: 25px;
    color: rgb(27, 25, 25);
    opacity: 0,3;
}
.icons ion-icon:hover{
    transform: scale(1.2);
    transition: 500ms all;
    color: #24496e;
}
.rodape h3{
    text-decoration: none;
    font-size: 15px;
    font-style: italic;
    color: #1b1d1f;
}
