:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  width: 100vw;
  min-height: 100vh;
  place-items: center;
  background: linear-gradient(rgba(4, 12, 22, 0.18), rgba(4, 12, 22, 0.28)),
    url("assets/bg.jpg") center / cover no-repeat;
}

h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
}
