@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: poppins;
}
body {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: black;
  overflow: hidden;
}

nav {
  position: fixed;
  z-index: 99;
  backdrop-filter: blur(4px);
  width: 100%;
}

nav .wrapper {
  max-width: 1300px;
  height: 70px;
  line-height: 70px;
  padding: 9px 30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo {
  color: #fff;
  font-size: 25px;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  margin: 0 10px;
  transition: all 0.5s;
}

.nav-links li a:hover {
  color: #ababab;
}

video {
  width: 70%;
  height: 100vh;
}

h1 {
  font-size: 20px;
  color: #fff;
  width: 30%;
  text-align: center;
  position: absolute;
  top: 40%;
  right: 10%;
  letter-spacing: 1px;
  line-height: 32px;
}

h1 a {
  color: #ffffff;
}

h1 a:hover {
  color: #ababab;
}
