:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #000;
}

body {
  min-height: 100svh;
}

main {
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 10vh 15vw;
}

img {
  display: block;
  width: 70vw;
  max-height: 62vh;
  object-fit: contain;
}

.discord-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.5rem;
  border-radius: .65rem;
  color: #fff;
  background: #8f35b8;
  font: 700 1rem/1 system-ui, sans-serif;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.discord-button:hover {
  background: #4f1d65;
  transform: translateY(-2px);
}

.discord-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
