@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
}

body {
  position: relative;
  width: 100%;
  height: 100vh;
}

video {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

header {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(#00000000, #0000004e, #000);
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background-color: #00000094;
  backdrop-filter: blur(4px);
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo h1 {
  color: #fff;
  letter-spacing: 1px;
  font-size: 23px;
  font-weight: 400;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
  letter-spacing: 1px;
}

.nav-links li a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 9px 15px;
  margin: 0 5px 0 5px;
  transition: all 0.3s ease-in-out;
}

.nav-links:hover > li > a {
  color: rgba(219, 219, 219, 0.853);
}

.nav-links li a:hover {
  color: #fff;
}

.content {
  color: #fff;
  position: absolute;
  left: 100px;
  bottom: 35%;
}

.content h1 {
  font-size: 80px;
}

.content p {
  font-size: 15px;
  width: 60%;
  letter-spacing: 1px;
  color: #eee;
}
