.page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 20%;
  grid-column-gap: 1em;
}

section {
  grid-column: span 2;
}

.main {
  grid-column: span 2;
}

aside {
  grid-row: 1/span 2;
  grid-column: 3;
}



h1 {
  font-family: 'Baloo Tammudu', cursive;
  background: navy;
  color: white;
  display: flex;
  justify-content: center;
  font-size: 300%;
  border-radius: 17px;
  padding-top: 3%;
  padding-bottom: 2%;
  position: absolute;
  top: 0px;
  width: 100%;
}

h2 {
  background-color: white;
  font-family: 'Baloo Tammudu', cursive;
  padding-left: 3%;
  padding-top: 2%;
  border-radius: 15px;
}

h3 {
  background-color: #64D9D7;
  background: url(imgs/"zen_garden.jpeg");
  font-family: 'Baloo Tammudu', cursive;
  display: flex;
  align-content: center;
  padding-top: 1.5%;
  padding-left: 3%;
  border-radius: 10px;
}

p{
  font-family: 'Nunito', sans-serif;
  color: white;

}

body {
  background-color: #585757;
}

a:link {
  color: lime;
}

a:hover {
  color:#64D9D7;
}

li {
  font-family: 'Nunito', sans-serif;
}

@media only screen and (max-width: 900px) {

    

    .page-wrapper {
      display: block;
      margin-top: 0;
    }

    h1 {
      position: static;
    }
}
