html {
  background: black;
  color: #eee;
  font-size: 16px;
}

body {
  margin: 0;
}

.header {
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 2.5rem;
}

.header-links {
  font-size: 1.5rem;
  display: flex;
  gap: 1rem;
}

.header-link {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.header-link:hover {
  color: red;
}

.menu {
  font-size: 1.5rem;
}

.hero-section {
  height: 100vh;
}

.hero-image {
  height: 100vh;
  background-color: transparent;
  background-image: url("../img/B_240701_d118_SW_vignette.png");
  background-repeat: no-repeat;
  background-position: center top;
}

.brand-section {
  padding: 10vh 0;
  background: #222;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

#scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  z-index: 33;
}

.bounce2 {
  animation: bounce2 8s ease infinite;
}
@keyframes bounce2 {
  0%,
  5%,
  12%,
  20%,
  25% {
    transform: translateX(-50%) translateY(0);
  }
  10% {
    transform: translateX(-50%) translateY(-30px);
  }
  15% {
    transform: translateX(-50%) translateY(-15px);
  }
}

/* teko-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Teko';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/teko-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* teko-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Teko';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/teko-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}