html, body {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
}
body {
  background-image: url("images/papertexture.jpg");
  background-size: fill;
}
.top-row {
  min-width: 100%;
  min-height: 250px;
  background-image: url("images/coachtags.png");
  background-position: top;
  background-size: auto 100%;
  background-repeat: repeat;
  margin-bottom: 20px;
}
h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 800;
  margin-left: 20px;
  margin-bottom: 0;
}
form {
  margin: 0 20px;
}
input {
  min-width: 300px;
  height: 34px;
  vertical-align: top;
  border: 1px black solid;
  padding-left: 4px;
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  height: 34px;
  width: 65px;
  color: #fff;
  background-color: #000;
  border: 1px black solid;
  padding: 0;
}
input, input::placeholder, button {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
}
input::placeholder {
  vertical-align: middle;
}
ul {
  padding-left: 20px;
}
li, p {
  vertical-align: top;
  list-style-type: none;
  font-family: 'Lato', sans-serif;
}
li p {
  margin-top: 24px;
}
#loadmore {
  min-width: 100px;
  visibility: hidden;
  display: block;
  margin: 20px auto;
}
.screen-reader-only {
  position: absolute;
  height: 1px;
  width: 1px;
  clip: rect(1px 1px 1px 1px); 
  clip: rect(1px,1px,1px,1px);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .top-row {
    min-height: 41vw;
    background-size: 105% auto;
    background-repeat: no-repeat;
  }
  input {
    min-width: 250px;
    margin-top: 5px;
  }
  button {
    margin-top: 5px;
  }
  li {
    width: 100%;
  }
  img {
    width: 95%;
  }
}
@media (min-width: 768px) {
  li {
    display: inline-block;
    width: 50%;
  }
  img {
    width: 85%;
  }
}
@media (min-width: 960px) {
  li {
    width: 33.3%;
  }
}
