body {
  margin: 0;
  padding: 0;
  font-family: 'Armata', sans-serif;
  overflow: hidden;
}

header {
  position: relative;
  background-color: transparent;
  height: 100vh;
}

nav {
  position: absolute;
  top: 8px;
  left: 30px;
  z-index: 1;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

nav li {
  display: inline-block;
}

nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 12px 10px;
  text-decoration: none;
  font-size: 16px;
}

.hero-image {
  background-image: url("../assets/Videoback.mp4");
  background-size: cover;
  height: 100vh;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text h1 {
  font-size: 64px;
  margin-bottom: 0;
  text-shadow: none;
  font-weight: 300;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.social-icons a {
  margin: 0 10px;
}

.social-icons img {
  max-width: 40px;
  max-height: 40px;
}

@media only screen and (max-width: 767px) {
  .hero-text h1 {
    font-size: 54px;
  }
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Send the video to the background */
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
