body{
    font-family:cursive;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: aliceblue;
}

#noteInput{
    border-radius: 13px; 
    margin-top: 5%; 
    width: 300px;
    min-height: 40px;
    background-color: rgb(211, 247, 211);
    border: none;
    text-align: center;
}

#addNoteButton{
    border-radius: 13px; 
    margin-top: 1%; 
    margin-bottom: 5%;
    width: 200px;
    min-height: 40px;
    background-color: rgb(36, 177, 36);
    border: none;
}

#board{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.note{
    position: relative;
    display: inline-block;
    max-width: 200px;
    border-radius: 10px;
    width: 200px;
    height: 200px;
    padding: 10px 10px 10px 10px;
    word-wrap: break-word;
    font-weight: lighter;
}

.delete{
    border-radius: 30px;
    background-color: red;
    position: absolute;
    top: 5px;
    right: 5px; 
    width: 25px;
    height: 25px;
    border: none;
}
