  #note-container{
    overflow: hidden;
  }
  .notes {
    max-width: 25vw;
    min-height:75vh;
    padding: 1em 2em;
    float:left;
    margin: 0 1em 1.5em;
    padding-bottom: 30px;
    box-shadow: 4px 8px 5px -5px rgba(0, 0, 0, 0.2), 25px 60px 30px -20px rgba(0, 0, 0, 0.15), 5px 0px 20px -5px rgba(0, 0, 0, 0.2);
    background: -moz-linear-gradient(-45deg, rgba(175, 175, 175, 0.16) 0%, rgba(175, 175, 175, 0) 24%, rgba(175, 175, 175, 0) 50%, rgba(183, 183, 183, 0) 71%, rgba(193, 193, 193, 0.16) 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(175, 175, 175, 0.16)), color-stop(24%, rgba(175, 175, 175, 0)), color-stop(50%, rgba(175, 175, 175, 0)), color-stop(71%, rgba(183, 183, 183, 0)), color-stop(100%, rgba(193, 193, 193, 0.16)));
    background: -webkit-linear-gradient(-45deg, rgba(175, 175, 175, 0.16) 0%, rgba(175, 175, 175, 0) 24%, rgba(175, 175, 175, 0) 50%, rgba(183, 183, 183, 0) 71%, rgba(193, 193, 193, 0.16) 100%);
    background: -o-linear-gradient(-45deg, rgba(175, 175, 175, 0.16) 0%, rgba(175, 175, 175, 0) 24%, rgba(175, 175, 175, 0) 50%, rgba(183, 183, 183, 0) 71%, rgba(193, 193, 193, 0.16) 100%);
    background: -ms-linear-gradient(-45deg, rgba(175, 175, 175, 0.16) 0%, rgba(175, 175, 175, 0) 24%, rgba(175, 175, 175, 0) 50%, rgba(183, 183, 183, 0) 71%, rgba(193, 193, 193, 0.16) 100%);
    background: linear-gradient(135deg, rgba(175, 175, 175, 0.16) 0%, rgba(175, 175, 175, 0) 24%, rgba(175, 175, 175, 0) 50%, rgba(183, 183, 183, 0) 71%, rgba(193, 193, 193, 0.16) 100%);
  }

  @media only screen and (max-width: 1025px) {
    .notes{
      min-width: 75vw;
    }
  }

  .notes h1 {
    font-size:xx-large;
  }

  .notes.blue {
    background-color: #a8e0f9;
    border: 1px solid #c0e9fb;
  }
  
  .notes.blue h1 {
    color: #0e8ec7;
  }
  
  .notes.green {
    background-color: #aef9a8;
    border: 1px solid #c4fbc0;
  }
  
  .notes.green h1 {
    color: #1bc70e;
  }
  
  .notes.pink {
    background-color: #f9a8d4;
    border: 1px solid #fbc0e0;
  }
  
  .notes.pink h1 {
    color: #c70e73;
  }
  
  .notes.yellow {
    background-color: #f6f9a8;
    border: 1px solid #f8fbc0;
  }
  
  .notes.yellow h1 {
    color: #c0c70e;
  }