*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body.content-page {
  display: block;
  height: auto;
  min-height: 100%;
  color: #27303f;
  background: #eef1f7;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.6;
}

main > h1 {
  text-align: center;
  margin-top: 1.5rem;
  color: #16233f;
  font-size: 2.25rem;
  font-weight: 700;
}

main > .intro {
  text-align: center;
  max-width: 520px;
  margin: 0.5rem auto 3rem;
  color: #5b6577;
}

.destination {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(22, 35, 63, 0.08), 0 1px 2px rgba(22, 35, 63, 0.06);
}

.destination img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.destination h2 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #16233f;
  font-size: 1.5rem;
}

.destination h3 {
  color: #16233f;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.destination a {
  color: #3556d2;
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 86, 210, 0.35);
}

.destination a:hover {
  border-bottom-color: #3556d2;
}

.destination .credit {
  font-size: 0.75rem;
  color: #94a0b2;
  margin-top: 0.4rem;
}

.destination .beer-bar {
  background: #eef2fb;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  border-left: 3px solid #3556d2;
}

.destination.mystery {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #16233f;
  color: #f7f9fc;
  border-radius: 8px;
}

.destination.mystery h2 {
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}

.destination.mystery p {
  color: #b7c2da;
}

@media (max-width: 600px) {
  main {
    padding: 1.25rem 1rem;
  }

  main > h1 {
    font-size: 1.75rem;
    margin-top: 0.5rem;
  }

  main > .intro {
    margin-bottom: 2rem;
  }

  .destination {
    margin-bottom: 1.5rem;
    padding: 1rem;
  }

  .destination img {
    max-height: 200px;
  }

  .destination h2 {
    font-size: 1.25rem;
  }

  .destination.mystery {
    padding: 2rem 1rem;
  }

  .destination.mystery h2 {
    font-size: 1.5rem;
  }
}
