body {
    margin: 0;
    font-family: 'Audiowide', sans-serif;
    background-color: black;
    color: white;
    overflow-x: hidden;
  }
  .Header {
    text-align: center;
    padding: 2rem 0;
    background-color: black;
    border-bottom: 2px solid white;
  }
  .Header h1 {
    font-size: 3rem;
    text-shadow: 5px 5px 8px rgba(255, 255, 255, 1);
  }
  .Header .video-container video {
    width: 80%;
    border: 2px solid white;
    margin: 1rem auto;
    display: block;
  }
  .image-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: black;
  }
  .image-wrapper {
    display: flex;
    gap: 1rem;
    width: max-content;
    position: relative;
  }
  .image-wrapper img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border: 2px solid white;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  .image-wrapper img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.7);
  }
