body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.875rem;
  background-color: #fff;
  color: #252525;
}

header {
  background-color: #385f70;
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 1rem;
  margin: 0.75rem;
}

p {
  margin: 0.5rem 0.75rem;
  max-width: 40rem;

}

.fw-logo {
  max-height: 64px;
  align-self: center;
}

.button {
  display: block;
  text-decoration: none;
  color: #252525;
  background: #ffc107;
  padding: 0.5rem 1rem;
  border: none;
  margin-top: 1rem;
  box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12);
}

@media only screen and (orientation: landscape) {
  .artwork {
    max-height: 300px;
  }
  
  p {
    text-align: center;
  }
}

@media only screen and (orientation: landscape) and (min-height: 768px) {
  .artwork {
    max-height: 460px;
  }
}

@media only screen and (orientation: landscape) and (min-height: 900px) {
  body {
    font-size: 1rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  .artwork {
    max-height: 720px;
  }
}