/*==============GERAL==============*/
*{
 list-style: none;
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
body{
    background: rgb(47,40,62);
    background: radial-gradient(circle, rgb(74, 46, 134) 0%, rgb(28, 111, 255) 0%, rgba(47,40,62,1) 100%);
 
    height: 100vh;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    
}

.esconder {
    display: none;
}
/*==============CABEÇALHO==============*/
header{
    text-align: center;
    padding: 40px;
    display: grid;
    gap: 20px;
    justify-content: center;
}
h1 span {
    color: rgb(255 179 38 / 85%);
}
#btnAdd{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: black;
    background-color: #8ff795;
    cursor: pointer;
    margin: 0 auto;
    border: none;
}
#btnAdd img {
    width: 20px;
    height: 20px;
    display: flex;
    margin: auto;
}
/*==============NOTA PRINCIPAL==============*/
#titulo {
    border: none;
    font-size: 20px;
    padding: 4px;
    margin-bottom: 3px;
    outline: none;
}
#anotacao{
    border: none;
    font-size: 20px;
    outline: none;
}
#salvar {
    padding: 5px 0;
    font-size: 20px;
    font-weight: 700;
    color: green;
    background: wheat;
    border-radius: 12px;
    box-shadow: 4px 3px 2px #838383;
    border: none;
}
.formulario{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.formulario__info {
    display: grid;
    background: wheat;
    padding: 8px;
}
.formulario__info div {
    display: flex;
    justify-content: space-between;
}
.formulario__info textarea::-webkit-scrollbar{
    width: 3px;
    background-color: white;
}
.formulario__info textarea::-webkit-scrollbar-thumb{
    border-radius: 30px;  
    background-color: orange;
}
/*==============LISTA DE ANOTAÇÕES==============*/
.notas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.notas li {
    margin: 0.3rem;
    background: wheat;
    padding: 5px;
    border-radius: 10px;
}
.notas li input {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 600;
    background-color: rgba(255, 209, 124, 0.878);
    border: none;
    padding: 2px;
    border-radius: 5px;
}
.notas li textarea{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    background-color: rgba(238, 183, 81, 0.847);
    color: black;
    line-height: 24px;
    border-radius: 5px;
    resize: none;
}
.notas li button , .formulario__info button{
    padding: 5px;
    background: #ff3c3ceb;
    border: none;
    border-radius: 8px;
    margin: 2px;
    color: white;
}



@media (max-width:600px) {
    .notas li .text{
        width: 180px;
        height: 190px;
        
    }
    li input {
        width: 145px;
        
    }
}

