@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
    box-sizing: border-box;
}

body {
    background-color: #7bdaf3;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
    margin: 0 0 3rem;
    min-height: 100vh;
    position: relative;
    top: 50px;
    left: 50px;
}

button {
    width: 100px;
    height: 40px;
    background-color: #9ec862;
    border: none;
    position: absolute;
    right: 10px;
    top: 10px;
}

main {
    width: 100%;
}

.notes {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.note {
    width: 600px;
    margin: 1rem;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, .2);
}

header {
    background-color: #9ec862;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

header i {
    padding: 1rem;
}

textarea {
    background-color: white;
    width: 100%;
    height: 200px;
    border: none;
}