* {
  box-sizing: border-box;
  font-family: "Barriecito", system-ui;
}

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: black;
}

.video-container {
  position: fixed;
  inset: 0;
  z-index: 0;
}

video {
  width: 100vw;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  z-index: 11;
}

.brand,
.nav-links a {
  color: white;
  text-decoration: none;
  z-index: 11;
  font-size: clamp(25px, 3vw, 50px);
}

.nav-links {
  display: flex;
  gap: 1vw;
  align-items: center;
}

.button-link {
  padding: 1vw  2vw;
  border: 1px solid white;
  border-radius: 100px;
}
