:root {
  color-scheme: light;
  background-color: #edf1f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background-color: #edf1f5;
  background-image: url("assets/shepguard-background-generic.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.splash {
  width: 100%;
  display: grid;
  place-items: center;
}

.splash__logo {
  display: block;
  width: min(28rem, calc(100vw - 3rem));
  height: auto;
  filter: drop-shadow(0 1rem 2rem rgba(15, 23, 42, 0.12));
}
