body {
  font-family:
    "Neue Montreal",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  background: rgb(var(--accent-100));
  line-height: 1.6;
  position: absolute;
  inset: 0px;
  display: grid;
  place-items: center;
}

h1 {
  color: rgb(var(--accent-600));
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  max-width: 52rem;
  text-wrap: balance;
}

a {
  color: rgb(var(--accent-600));
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(var(--accent-700));
  text-decoration: underline;
}

.maintenance-content {
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  gap: 1rem;
}

.maintenance__content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.maintenance__description {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: rgb(var(--shade-700));
  line-height: 1.3;
}

.maintenance__description > * {
  font-size: 1.3rem;
}

.maintenance__image {
  border-radius: 30px;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.maintenance__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
    font-weight: 500;
  }

  .maintenance-content {
    font-size: 1.4rem;
    max-width: 120rem;
  }

  .maintenance__image {
    height: 50vh;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 4rem;
    font-weight: 500;
  }

  .maintenance-content {
    font-size: 1.4rem;
    max-width: 120rem;
  }
}
