@import url("https://fonts.googleapis.com/css2?family=Anton+SC&display=swap");

*,
*::before,
*::after {
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Anton SC", sans-serif;
}

section {
  height: 100svh;
  background: url("./assets/background.jpg");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
}

h1 {
  font-size: clamp(60px, 4.68vw, 90px);
  color: #fff;
  filter: drop-shadow(4px 5px 10px #010101);
  text-align: center;
}

h2 {
  color: #fff;
  filter: drop-shadow(4px 5px 10px #010101);
}