@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,900;1,300&display=swap");

html,
body {
  min-height: 100vh;
}

p,
h1 {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

* {
  font-family: "Roboto", sans-serif;
}

.background {
  width: 100%;
  height: 100vh;

  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/img/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.content {
  height: 100%;
}

.vstack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.align-center {
  align-items: center;
}

.content-center {
  justify-content: center;
}

.display {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.3px;
}

.title {
  font-family: sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.text-white {
  color: white;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.title-sm {
  font-family: sans-serif;
  font-size: clamp(1rem, 1vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.4px;
}

.px-4 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.container {
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 40rem;
  aspect-ratio: 16/9;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.italics {
  font-style: italic;
  font-weight: 300;
}


.gap-2 {
  gap: 0.5rem;
}