* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: url("background.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: clamp(2rem, 12vw, 10rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: lowercase;
}
