html {
    background: rgba(65, 188, 147, 0.878);
    height: 100%;
}

body {
    width: 100%;
    min-height: 100%;
    background: rgb(255, 255, 255);
}

#banner {
    text-align: center;
    font-size: 3em;
    
    color: white;
    background-color: rgb(127, 255, 212);
    padding: 20px;
 
}

nav {
    text-align: center;
    background-color: rgba(127, 255, 212, 0.25);
}

#page-list li {
    display: inline-block;
    padding: .8em 3em;
    font-size: 2em;

}

#page-list li a {
    color: rgb(123, 163, 150);
    text-decoration: none;
}

#page-list li a:hover {
    color: rgba(4, 107, 73, 1);
    text-decoration: none;
}

#page-list li a:active {
    color: rgb(127, 212, 184);
    text-decoration: none;
}



main p {
    display: inline-block;
    padding: 30px 5px;
    height: 100%;
    font-size: 2rem;
    font-family: 'Reenie Beanie';
    /* background-color: rgba(255, 254, 196, 0.913); */
}

strong {
    font-family: 'Lato';
}

#note {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1em;
}

#note li p {
    text-decoration:none;
    color:#000;
    background:#ffc;
    display:block;
    height:10em;
    width:10em;
    padding:1em;
    box-shadow: 5px 5px 7px rgba(33,33,33,.7);
    transition: transform .15s linear;
  }

  #note li {
      margin: 1em;
  }

  #note li:nth-child(even) p{
    transform:rotate(4deg);
    position:relative;
    top:5px;
    background:#cfc;
  }

  #note li:nth-child(odd) p{
    transform:rotate(-3deg);
    position:relative;
    top:-5px;
  }

  #note li:nth-child(3n) p{
    background:#ccf;
  }

  #note li p:hover,#note li p:focus{
    box-shadow:10px 10px 7px rgba(0,0,0,.7);
    transform: scale(1.25);
    position:relative;
    z-index:5;
  }

