@font-face {
  font-family: "Atlantis Headline";
  src: url("atlantis.headline-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  font-family: "Atlantis Headline", Arial, sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
