/* #region unset styles  */
@namespace svg "http://www.w3.org/2000/svg";

:not(svg|*) {
  all: unset;
  display: inline-block;
  box-sizing: border-box;
}

head {
  display: none;
}
/* #endregion  */

html {
  display: grid;
  width: 100%;
  height: 100%;

  background-color: #ff3300;

  grid-auto-flow: row;
  grid-auto-rows: max-content;
  justify-items: center;
  align-content: center;

  background-image: url("./bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  display: grid;

  width: 100%;
  height: 100%;

  grid-auto-flow: row;
  grid-auto-rows: max-content;
  justify-items: center;
  align-content: center;
}

h1 {
  color: #fff;
  font-family: system-ui;
  padding: 0.5dvw;
  font-size: min(10dvw, 10dvh);
}
