html, body {
    height: 100%;
}

body
{
    margin: 0;
    padding: 0;
    overflow: scroll;
    background-color: #f0f0f0;
    width: 3500px;
    height: 3500px; 
}

.notas {
    width: 800px;
    height: 800px;
  }
.nota {
    width: 150px;
    height: 150px;
    background: rgb(145, 226, 255);

    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.50);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.50);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.50);   

    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 0px solid #000000;     
    cursor:move;        
}
.flex-container {
    position: relative;
    top: 0px;
    width: 150px;
    height: 30px;
    display: flex;
    background-color: rgb(231, 228, 60);

    border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    border: 0px solid #000000;        

} 

.flex-container > div {
    margin: 5px;
    padding: 0px;
    font-size: 8px;
}

.titulo {
    position: relative;
    top: -15px;
    width: 100px ;
    font-size: 12px;
    cursor:move;
}      

.button {
    background-color: rgb(231, 228, 60);
    border: none;
    color: white;
    padding: 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 0px 0px;
}      

.texto_nota { 
    position: relative;
    top: 0px;        
    padding: 5px;
    border: 0px solid rgb(204, 204, 204);
    width: 150px;
    height: 120px;
    font-size: 10px;
}

.usuario {
    position: relative;
    font-size: 10px;
    top: -148px; 
    left : 5px;      

}
.nota:hover {
    background: rgba(255, 255, 116, 0.483);
}   


@media (min-width:992px) {

}

@media (max-width:992px) {

}