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

body{
    background: #2e2d31;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
}

.add{
    border: none;
    border-radius: 50%;
    width: 50px;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
    padding: 10px;
    position: fixed;
    bottom: 2px;
    left: 2px;
    margin-left: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.add i{
    color: white;
    font-size: 2rem;
}

.note {
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
    margin: 30px 20px;
    border-radius: 10px;
    height: 200px;
    width: 300px;
  }
  
  .note .tools button {
    position: absolute;
    background-color: transparent;
    border: none;
    color: black;
    cursor: pointer;
    font-size: 1rem;
    bottom: 5px;
    right: 8px;
  }
  
  .note textarea {
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    font-size: 1.2rem;
    border: none;
    height: 100%;
    width: 100%;
    padding: 20px;
    resize: none;
    text-align: center;
  }

  .textarea{
    max-height: 100%;
    justify-content: center;
    line-height: 1.5;
  }
  
  .hidden {
    display: none;
  }