body {
  margin: 0;
  background-color: #000;
}

.video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@font-face {
  font-family: 'Audiowide';
  src: url('media/Audiowide.ttf') format('truetype');
}

.overlay-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: 'Audiowide', sans-serif;
  padding: 20px;
}

.overlay-image {
  max-width: 50%;
  height: auto;
  margin: 20px 0;
}

.top-text, .bottom-text {
  font-size: 1.5em;
}

.bottom-text a {
  color: white;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .overlay-image {
    max-width: 90%;
  }

  .top-text, .bottom-text {
    font-size: 1.2em;
  }
}
