:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  color: #f5f7fb;
  background:
    linear-gradient(180deg, rgb(7 11 20 / 28%), rgb(7 11 20 / 72%)),
    url("mt-sample-background.jpg") center center / cover no-repeat #070b14;
}

.landingPage {
  min-height: 100dvh;
  padding: 24px;
  display: flex;
  justify-content: center;
}

.landingPage-content {
  flex: 1;
  width: min(100%, 720px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  justify-items: center;
  text-align: center;
}

.landingPage-logo {
  margin-top: clamp(28px, 6vw, 56px);
  width: min(240px, 72vw);
  height: auto;
}

.landingPage-message {
  margin: 0;
  align-self: center;
  font-size: clamp(1.25rem, 4vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 18px rgb(0 0 0 / 35%);
}

.landingPage-footer {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px rgb(0 0 0 / 35%);
}

@media (width >= 768px) {
  .landingPage {
    padding: 40px;
  }
}
