* {
  margin: 0;
  padding: 0;
  font-family: poppins, sans-serif;
}
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-family: "Comfortaa";
  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-out;
  font-family: "Comfortaa";
}

.nav-links:hover > li > a {
  color: rgba(219, 219, 219, 0.853);
}

.nav-links li a:hover {
  color: #fff;
}

header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(to bottom, #00000059, #000000c3),
    url(A1.jpg);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}

header .content {
  align-items: center;
  justify-content: center;
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content h1 {
  color: transparent;
  font-size: 110px;
  text-align: center;
  -webkit-text-stroke: 0.5px #fff;
  -webkit-background-clip: text;
  background-color: #fff;
}

.content h4 {
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  font-family: "Comfortaa";
  font-weight: 400;
}
