@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
    box-sizing: border-box;
}

body {
    background-color: skyblue;
    display: flex;
    flex-wrap: wrap;
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding-top: 3rem;
}

.add {
    background-color: #849c60;
    display: flex;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0.5rem 1rem;
    margin: 2rem auto;
    position: fixed;
    top: 1rem;
    right: 1rem;
}

.note {
    background-color: #fff;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
    margin: 20px;
    height: 400px;
    width: 400px;
}

.note .tools {
    background-color: #849c60;
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem;
}

}
.note .tools button {
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 0.5rem;   
}

.notes .main {
    background-color: rgb(201, 201, 201);
    display: none;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.note textarea {
    font-family: inherit;
    outline: none;
    border: none;
    font-size: 1.2rem;
    height: 400px;
    width: 100%;
}

.main .hidden {
    display: none;
}