* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: #ffffff;
  color: #1c1c1c;
  font-family: "Times New Roman", Times, serif;
}

.landing {
  min-height: 100vh;
  width: min(92%, 780px);
  margin: 0 auto;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  display: block;
  width: min(58vw, 320px);
  height: auto;
  margin-bottom: 28px;
}

h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 400;
}

.message {
  margin: 34px 0 8px;
  max-width: 680px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: #4e4e4e;
}

.email {
  color: #1c1c1c;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.email:hover,
.email:focus-visible {
  opacity: 0.7;
}

@media (max-width: 520px) {
  .landing {
    padding: 32px 18px;
  }

  .logo {
    width: min(72vw, 280px);
  }

  .message {
    margin-top: 28px;
  }
}
