:root {
  --splash-bg-img: none;
}

/* https://www.joshwcomeau.com/css/custom-css-reset/ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

#root,
#__next {
  isolation: isolate;
}

html,
body {
  height: 100vh;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;

  background: #ebebeb;
  color: #222;
  font-family: system-ui;
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

main {
  height: 100%;
}

footer {
  bottom: 0;
  backdrop-filter: blur(4px);
  padding: 0.5rem;
  position: fixed;
  text-align: center;
  width: 100%;
}

footer > img {
  display: inline-block;
  vertical-align: middle;
}

.splash {
  background: var(--splash-bg-img) no-repeat center center;
  background-size: cover;
  height: 100vh;
  width: 100vw;
}
