:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #10243b;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(7, 24, 40, .72), rgba(7, 24, 40, .38)),
    url("assets/saquarema-sunset.png") center / cover no-repeat fixed;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background: transparent;
}

.shell {
  width: min(44rem, 100% - 3rem);
  margin: auto;
  padding: 4.75rem 2rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #d7e8f5;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .2em;
}

h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 7.2vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
  white-space: nowrap;
}

.country {
  margin: .8rem 0 0;
  color: #d7e8f5;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.4;
}

.country [role="img"] {
  margin-right: .22em;
  letter-spacing: 0;
}

.intro {
  max-width: 34rem;
  margin: 1.75rem auto 2.3rem;
  color: #eef5fa;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.65;
}

.contact {
  display: inline-block;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  background: #fff;
  color: #133f64;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms, transform 160ms;
}

.contact:hover,
.contact:focus-visible {
  background: #e0edf5;
  transform: translateY(-1px);
}

footer {
  padding: 1.5rem;
  color: #e6eef4;
  font-size: .82rem;
  text-align: center;
}

@media (max-width: 420px) {
  .shell {
    width: min(100% - 2rem, 44rem);
    padding-inline: 1rem;
  }
}
