* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  overflow: hidden;
  background-color: #08090b;
  background-image:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0) 35%),
    linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)),
    repeating-linear-gradient(115deg, transparent 0 74px, rgba(255, 255, 255, 0.018) 74px 76px),
    repeating-linear-gradient(25deg, rgba(255, 255, 255, 0.018) 0 74px, transparent 74px 150px);
  color-scheme: dark;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.48) 100%);
}

main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 80px);
}

.logo {
  display: block;
  width: min(500px, 78vw);
  max-width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .logo {
    width: min(480px, 90vw);
  }
}
