body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}
.header-image {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}
.menu {
  position: absolute;
  right: 32px;
  left: 32px;
  top: 16px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-logo {
  color: #ffffff;
  font-size: 50px;
  font-family: "Tilt Prism", cursive;
}
.menu-link {
  color: white;
  text-decoration: none;
  margin-left: 16px;
}
.menu-link:hover {
  text-decoration: underline;
}
.menu-anruf-button {
  background-color: #ffdd03;
  padding: 8px 30px;
  color: black;
  border-radius: 8px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0);
}
.main {
  position: absolute;
  left: 32px;
  top: 280px;
  right: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-headline {
  color: white;
  font-size: 70x;
  width: 250px;
  text-shadow: 5px 5px 5px rgba(0, 0, 0);
}
.main-yellow {
  color: #ffdd03;
}
.main-spiele-link {
  color: white;
  font-size: 30px;
  text-decoration: none;
  text-shadow: 5px 5px 5px rgba(0, 0, 0);
}
.main-spiele-link:hover {
  text-decoration: underline;
}
h2 {
  text-align: center;
  font-size: 45px;
}
.description-section {
  padding: 30px 100px;
  display: flex;
  gap: 50px;
}
.half-width {
  width: 50%;
}
.youtube-video {
  width: calc(100vw * 0.4);
  height: calc(56.25vw * 0.4);
}

@media (max-width: 900px){
  .main{
    top: 100px;
  }
}

@media (max-width: 700px) {
  .menu-navigation {
    display: none;
  }
  .description-section {
    flex-direction: column;
    align-items: center;
    height: unset;
  }
  .half-width {
    width: unset;
  }
  .quarter-width {
    width: unset;
  }
}


@media (max-width: 600px) {
  .main {
    flex-direction: column;
    top: 180px;
    align-items: center;

  }
  .main-spiele {
    margin-top: 50px;
  }
}