@import url('https://fonts.googleapis.com/css?family=Abel');
@import url('https://fonts.googleapis.com/css?family=Karla');
body {
  background-image: url('pokeball-background.png');
  font-family: Karla;
  margin: 40px;
  color: #f4f4ed;
  font-size: 30px;
}

h4 {
  text-decoration: underline;
}

a:visited {
  color: turquoise;
}

section {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  height: auto;
  background-color: wheat;
  text-align: center;
}

.oakText {
  font-family: Abel;
  color: #444;
  font-size: 20px;
  text-align: center;
}

#oakSide {
  float: left;
}

#oakImage {
  float: left;
  min-height: 500px;
  width: auto;
}

.wrapper {
  font-family: Abel;
  text-align: left;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 20px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  background-color: wheat;
  color: #444;
}

.box {
  background-color: wheat;
  color: #c6c5b9;
  border-radius: 5px;
  font-size: 100%;
  width: 25%;
  max-width: 400px;
  min-height: 200px;
}

img {
  width: 300%;
  height: auto;
  padding: 10px;
  margin: 10px;
}

#footer {
  font-size: 20px;
  padding: 20px;
}

@media screen and (max-width: 600px) {
  .wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
  }
  img {
    width: auto;
    height: 80px;
    padding: 5px;
    margin: 5px;
    ;
  }
  #oakImage {
    float: left;
    min-height: 200px;
    width: auto;
  }
}

@media only screen and (max-width: 800px) {
  .wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }
  .box {
    height: 400px;
  }
  #oakSide {
    float: left;
  }
  #oakImage {
    display: none;
  }
}