:root {
  font-family: Inter, sans-serif;
  font-feature-settings: "liga" 1, "calt" 1;
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-image: url(background.jpg);
  background-size: 150rem;
}

.background {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(15 23 42 / 0.04)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
  background-position: bottom 1px center;
  mask-image: linear-gradient(to bottom, transparent, black);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black);
}

#brand {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  padding: 4rem;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 1.2813rem + 5.5vw, 4.375rem);
  text-align: center;

  line-height: 1;
  letter-spacing: -0.025em;
}
