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

body {
  background: #18182a;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(-2deg, #0a0a10, #131319);
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #18182a;
  box-shadow: 0 0 .5rem rgba(0, 0, 0, .25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}

.brand img {
  height: 2rem;
  width: auto;
  display: block;
}

.brand:hover {
  background: hsla(0, 0%, 100%, .1);
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5865f2;
  text-decoration: none;
}

.header-link svg {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}

.page-main {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.status-card {
  width: min(100%, 42rem);
  background: #2d2d38;
  border-top: 3px solid var(--theme-accent);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .18);
  padding: 2rem;
}

.status-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.status-icon {
  flex: 0 0 auto;
  width: 4.75rem;
  height: 4.75rem;
  color: var(--status-color);
  opacity: .9;
}

.status-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.status-copy h1 {
  margin: 0 0 .75rem;
  line-height: 1;
  font-size: 2.6rem;
  color: #fff;
  word-break: break-word;
}

.status-copy p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--status-color);
  word-break: break-word;
}

.status-copy code {
  border: 0;
  display: inline-block;
  font-family: "Source Code Pro", monospace;
  padding: .2em .5em;
  background: rgba(0, 0, 0, .2);
  font-size: .8em;
  border-radius: 2px;
  line-height: 1.5;
}

.page-footer {
  background: #2d2d38;
  padding: .4em 1em;
  box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
}

.footer-copy {
  display: inline-flex;
  align-items: center;
  gap: .38em;
  flex-wrap: wrap;
  font-size: .9rem;
}

.footer-copy img {
  display: block;
  width: auto;
  height: 1.08em;
}

@media (max-width: 700px) {
  .brand {
    font-size: 1.15rem;
  }

  .status-card {
    padding: 1.4rem;
  }

  .status-row {
    flex-direction: column;
    gap: 1rem;
  }

  .status-icon {
    width: 4rem;
    height: 4rem;
  }

  .status-copy h1 {
    font-size: 2rem;
  }

  .status-copy p {
    font-size: 1rem;
  }
}
