body {
  box-sizing: border-box;
  background-color: #f5f0e7;
  margin: 0;
  padding: 2rem;
  scroll-snap-type: y mandatory;
}

.navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #9a9a9a;
}
.navigation h1 {
  margin-top: 0;
}

.link-container {
  padding-bottom: 1rem;
}
.link-container a {
  color: #123958;
  text-decoration: none;
  border: 1px solid #9a9a9a;
  border-radius: 5px;
  padding: 0.313rem;
}

.logo-link {
  text-align: center;
  margin: 2rem 0;
}

.main-image {
  width: 100%;
  height: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.content {
  text-align: center;
  font-size: 1.5rem;
}
.content .message {
  margin-bottom: 1rem;
}

@media screen and (min-width: 576px) {
  .navigation {
    flex-direction: row;
    justify-content: space-between;
  }
  .content .message {
    font-size: 2rem;
  }
}
