.momo-trust-display-regular {
  font-family: "Momo Trust Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body
{
    margin: 0;
    background: #01651f;
}

#app {
    display: grid;
    grid-template-columns: repeat(auto-fill, 200px);
    padding: 24px;
    gap: 24px;
}

.note
{
    height: 200px;
    box-sizing: border-box;
    padding: 16px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
    resize: none;
    font-family: sans-serif;
    font-size: 16px;
}
.add-note
{
    height: 200px;
    border:none;
    outline:none;
    background:rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 120px;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: background 0.2s;
}

.add-note:hover
{
    background: rgba(0, 0, 0, 0.2);
}

header,footer
{
    color: white;
    font-family: "Momo Trust Display", sans-serif;
    font-weight: normal;
    padding: 50px;
    background-color: #064218;
}
.instruct
{
    color: white;
    font-family: "Momo Trust Display", sans-serif;
    padding: 50px;
    font-weight: normal;
}

.icon
{
    width: 10px; 
    height: 10px;
}
