* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: saddlebrown;
}

h1 {
    height: 40px;
    text-align: center;
    background-color: rgb(181, 111, 247);
}

#addBtn {
    position: fixed;
    right: 10px;
    top: 50px;
    color: white;
    background-color: black;
    padding: 10px;
    border: 0;
    outline: 0;
    border-radius: 10px;
}

#main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.note {
    width: 400px;
    height: 400px;
    background-color:black;
    margin: 20px;
    margin-top: 50px;
    border-radius: 10px;
}

.toolbar {
    padding: 5px;
    width: 100%;
    height: 2rem;
    color: white;
    background-color: black;
    display: flex;
    justify-content: end;
    border-radius: 10px;
}

.toolbar i {
    padding: 5px;
    cursor: pointer;
}

.note textarea {
    padding: 10px;
    border: none;
    width: 100%;
    height: 90%;
    resize: none;
    font-size: 18px;
    font-weight: 50;
}

.note textarea:focus {
    border: 0;
    outline: 0;
}