* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #b0b0b0;
  font-family: Georgia;
  font-size: 1.5rem;
  color: #000;
  max-width: 75rem;
  margin: 1rem auto;
  border: .25rem solid #fff;
}

header,
footer {
  text-align: center;
  padding: 1rem;
}

small {
  font-size: 70%;
  font-variant: small-caps;
  text-transform: none;
}

p {
  font-style: italic;
  margin-top: 0;
}

ul {
  list-style: none;
  padding: 0 1rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: stretch;
}

li {
  width: 100%;
  margin-bottom: 1rem;
}

li:target a {
  text-decoration: underline;
}

a {
  background: linear-gradient(to top, #5e5e5e 0%, #6e6e6e 100%);
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .5rem .5rem .25rem;
  margin-bottom: 1rem;
  border: .2rem outset #454d39;
  border-radius: .5rem;
  box-shadow: .2rem .2rem .2rem rgba(0, 0, 0, .5);
  -webkit-appearance: none;
}

a:hover,
a:focus {
  background: linear-gradient(to bottom, #5e5e5e 0%, #6e6e6e 100%);
  box-shadow: none;
  position: relative;
  top: .2rem;
  left: .2rem;
  border-style: inset;
  box-shadow: inset .2rem .2rem .2rem rgba(0, 0, 0, .5);
  outline: none;
  cursor: pointer;
}

.large-text {
  color: #d52401;
  font-size: 3.5rem;
  font-weight: 400;
  font-variant: small-caps;
  text-shadow: 2px 2px rgba(0, 0, 0, .75);
  line-height: 1;
  margin: 0 0 1rem;
}

.full-height {
  height: 100%;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  position: absolute;
  border: 0;
}

@media (min-width: 33.75rem) {
  body {
    padding-top: 2rem;
  }
  li {
    width: 48%;
  }
  li:nth-child(odd) {
    margin-right: 2%;
  }
  a {
    font-size: 1.5rem;
  }
  .large-text {
    font-size: 5rem;
  }
}

@media (min-width: 48rem) {
  body {
    margin: 2rem auto;
  }
  li {
    width: 32%;
  }
  li:nth-child(odd) {
    margin-right: 0;
  }
  li:not(:nth-child(3n)) {
    margin-right: 2%;
  }
  a {
    padding: 1rem 1rem .75rem;
  }
}

@media (max-width: 76rem) {
  body {
    margin: 1rem .5rem;
  }
}
