@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  font-family: "Poppins";
  margin: 0;
  padding: 0;
}
nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #0000006a;
  backdrop-filter: blur(4px);
}

body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #fdeacf;
}
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;
  font-size: 25px;
  font-weight: 500;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 9px 15px;
  margin: 0 5px;
}
.content {
  position: absolute;
  left: 7%;
  top: 30%;
  color: #806115;
}

.content h1 {
  font-size: 100px;
  line-height: 100px;
}

.content p {
  font-size: 18px;
  line-height: 28px;
  width: 40%;
  margin: 20px 0;
}

img {
  height: 100vh;
  position: absolute;
  right: 0;
  top: 0;
}
