:root {
  color-scheme: dark;
  background: #050506;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  overflow: hidden;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100svh;
  padding: 34px;
  background-image:
    linear-gradient(rgb(10 10 10 / 60%), rgb(10 10 10 / 60%)),
    url("assets/bg_matsuri.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.logo {
  display: block;
  width: min(500px, 100%);
  height: auto;
  margin-bottom: 34px;
}

@media (max-width: 600px) {
  .hero {
    padding: 24px;
  }

  .logo {
    margin-bottom: 20px;
  }
}
