@font-face {
  font-family: "Gambarino";
  src: url("assets/fonts/Gambarino-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #050505;
  color: #fff;
  font-family: "Gambarino", Georgia, serif;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.08) brightness(1.03);
}

h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3.2vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 2px 18px rgb(0 0 0 / 0.45);
}
