:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
}

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: #0b0b0b;
}

.maintenance-message {
  width: min(100%, 1280px);
  position: relative;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
}

p {
  margin: 42px 0 0;
  color: #f5f5f5;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.maintenance-discord {
  position: absolute;
  top: 100%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: #f5f5f5;
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transform: translateX(-50%);
  transition: color .18s ease;
}

.maintenance-discord:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.maintenance-discord:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
  border-radius: 2px;
}

.maintenance-discord svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  body {
    padding: 16px;
  }

  .maintenance-discord {
    margin-top: 18px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    margin-top: 28px;
  }
}
