html,
body,
#container {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
  font-size: 15px;
  margin: 0;
  background-color: #eeeded;
}
p {
  margin: 0;
}
img {
  height: auto;
}
img.header {
  width: 100%;
}
#header-wrapper {
  position: relative;
}
#header-wrapper .logo,
#header-wrapper .shield {
  position: absolute;
}
#portrait .logo {
  width: 55%;
  left: 5%;
  bottom: 13%;
}
#portrait .shield {
  width: 17%;
  right: 5%;
  bottom: 13%;
}
#landscape .logo {
  width: 31%;
  left: 2%;
  bottom: 15%;
}
#landscape .shield {
  width: 9.5%;
  right: 4%;
  bottom: 20%;
}
#content-wrapper {
  width: 100%;
  position: relative;
  top: 10%;
  text-align: center;
}
#content {
  display: inline-block;
  font-weight: bold;
  color: gray;
}
#next-button {
  width: 95%;
  margin-top: 4%;
  padding: 4% 0;
  background-color: white;
  border-radius: 0.2em;
  border: none;
  box-shadow: 0 0 0.2em lightgray;
  text-decoration: none;
  font-size: inherit;
  font-weight: bold;
  color: #5492A4;
}
#next-button:hover {
  background-color: lightgray;
  box-shadow: 0 0 0.2em gray;
  outline: 0;
}
#footer-wrapper {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
}
#footer {
  display: inline-block;
  font-weight: bold;
  color: gray;
  font-size: 0.7em;
}
@media (min-device-width: 680px) and (max-device-width: 1279px) {
  body {
    font-size: 1.2em;
  }
}
@media (min-device-width: 1280px) and (max-device-width: 1979px) {
  body {
    font-size: 1.5em;
  }
}
@media (min-device-width: 1980px) {
  body {
    font-size: 2em;
  }
}
@media (orientation: portrait) {
  #portrait {
    display: block;
  }
  #landscape {
    display: none;
  }
}
@media (orientation: landscape) {
  #portrait {
    display: none;
  }
  #landscape {
    display: block;
  }
}
