@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

body {
  overflow-x: hidden;
}

nav {
  position: absolute;
  z-index: 99;
  width: 100%;
  background-color: transparent;
  backdrop-filter: blur(3px);
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
  letter-spacing: 1px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 9px 15px;
  margin: 0 5px;
  transition: all 0.5s;
}

.nav-links li a:hover {
  color: rgba(219, 219, 219, 0.853);
}

header {
  width: 100%;
  height: 100vh;
  background-image: url(backimage.webp);
  background-size: cover;
  background-position: bottom;
  position: relative;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
}
.content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
}

.content h1 {
  font-size: 70px;
}

.content p {
  font-size: 18px;
}

.detail {
  padding: 3rem 5%;
}

.detail h1 {
  font-size: 45px;
  margin: 10px 0;
}

.detail p {
  font-size: 20px;
}

footer {
  width: 100%;
  height: 80vh;
  position: relative;
  background-image: url(backimage.webp);
  background-size: cover;
}

.wave-footer {
  position: absolute;
  top: 0;
  left: 0;
}

.foot {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
}

.foot h1 {
  font-size: 50px;
}
