* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h2{
    text-align: center;
    background-color: #2F4858;
    color: #fff;
    padding: 10px;
}

#main {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 50px;
    background-color: #FF9671;
    display: flex;
    flex-wrap: wrap;
}

#addBtn {
    position: fixed;
    right: 15px;
    top: 55px;
    background-color: #2F4858;
    color: white;
    padding: 10px;
    border: 0;
    outline: 0;
    border-radius: 5px;
}

.note {
    width: 400px;
    height: 400px;
    background-color: white;
    margin: 50px;
    margin-top: 55px;
    border-radius: 10px;
}

.tool {
    width: 100%;
    background-color: #2F4858;
    color: white;
    padding: 5px;
    display: flex;
    justify-content: end;
}

.tool i {
    padding: 5px;
    cursor: pointer;
}

.note textarea {
    border: none;
    width: 100%;
    height: 100%;
    resize: none;
    padding: 10px;
    font-size: 18px;
    color: #4B597A;
    border-radius: 10px;
}

.note textarea:focus {
    border: 0;
    outline: 0;
}