@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;
  background-image: url(image.png);
  background-size: cover;
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  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: #d3682e;
  font-size: 25px;
  font-weight: 500;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #984315;
  text-decoration: none;
  font-size: 20px;
  padding: 9px 15px;
  margin: 0 5px;
  transition: all 0.5s;
}

.nav-links li a:hover {
  color: #d3682e;
}

.content {
  position: absolute;
  right: 5%;
  top: 25%;
  text-align: right;
  width: 53%;
}
h1 {
  color: #86675e;
  font-size: 80px;
  line-height: 90px;
}

p {
  margin: 30px 0;
  font-size: 18px;
  color: #89807d;
  word-break: break-all;
}
