@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;
}

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 {
  color: #fff;
  letter-spacing: 1px;
  font-size: 23px;
  font-weight: 400;
  cursor: pointer;
}

.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;
  padding: 9px 15px;
  margin: 0 5px;
  transition: all 0.3s;
}

.nav-links li a:hover {
  color: #fff;
}

header {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(#000000a3, #0000004e, #00000019);
}
.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;
}

.button {
  padding: 7px 15px;
  border: 1px solid #fff;
  width: 150px;
  cursor: pointer;
  text-align: center;
  border-radius: 20px;
  font-size: 18px;
  transition: all 0.3s;
  margin-top: 20px;
}

.button:hover {
  background-color: #ffffff3c;
}
video {
  position: absolute;
  height: 100vh;
  object-fit: cover;
  width: 100%;
}
