body {
    margin: 0;
    font-family: "Roboto", sans-serif;
  }

  .header-image {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.5);
  }

  .container {
    position: absolute;
    right: 32px;
    left: 32px;
    top: 16px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: 50px;
    right: 32px;
    left: 32px;
    top: 16px;
  }

  .menu-link {
    color: white;
    text-decoration: None;
    margin-left: 16px;
  }

  .menu-link:hover {
    text-decoration: underline;
  }

  .headline {
    position: absolute;
    left: 50px;
    top: 300px;
    color: white;
    font-size: 70px;
    width: 700px;
    text-shadow: 5px 10px 5px rgba(0, 0, 0, 0.5);
  }

  .yellow {
    color: rgb(243, 204, 28);
  }

  .description2 {
    height: 500px;
    padding: 30px 100px;
    display: flex;
    gap: 50px;
  }

  .button {
    background-color: rgba(255, 230, 0, 0.668);
    padding: 8px 30px;
    color: black;
    border-radius: 20px;
  }

  .half-width {
    width: 50%;
  }

  h2 {
    text-align: center;
    font-size: 45px;
  }

  .video-container {
    width: 50%;
  }

  .youtube {
    width: calc(100vw * 0.4);
    height: calc(56.25vw * 0.4);
  }

  @media (max-width: 750px) {
    .description2 {
        flex-direction: column;
        align-items: center;
        height: unset;
    }

    .half-width {
        width: unset;
    }

    .video-container {
        width: unset;
        display: flex;
        justify-content: center;
    }

    .navigation {
        display: none;
    }
  }