*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial;
background-color: rgb(0, 0, 0);
}





.header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 30px 60px;

  background: transparent;
  z-index: 10;
}

.logo img{
  height: 40px;
}

.nav{
  display: flex;
  gap: 40px;
}

.nav a{
  text-decoration: none;
  color: white;
  font-family: Bahnschrift;
  font-size: 14px;
  letter-spacing: 1px;
}

.logo {
  font-family: michroma;
  color: aliceblue;

}








.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}