@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "poppins";
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #0000006a;
  backdrop-filter: blur(3px);
}

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 a {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1px;
  margin: 0 0 0 20px;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
  letter-spacing: 0.5px;
}

.nav-links li a {
  color: #f3f3f3;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 9px 15px;
  margin: 0 15px;
  transition: all 0.5s;
}

.nav-links:hover > li > a {
  color: rgba(219, 219, 219, 0.853);
}

.nav-links li a:hover {
  color: #fff;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

nav input {
  display: none;
}

@media (max-width: 900px) {
  .wrapper .btn {
    display: block;
  }

  .wrapper::-webkit-scrollbar {
    width: 10px;
  }
  .wrapper::-webkit-scrollbar-track {
    background: #242526;
  }
  .wrapper::-webkit-scrollbar-thumb {
    background: #3a3b3c;
    border-radius: 5px;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 500px;
    top: 0;
    left: -100%;
    background-color: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
  }

  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 18px 15px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
    margin: 0;
  }
}

header {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: linear-gradient(to bottom, #00000030, #00000036, #000000c0),
    url(background.webp);
  background-size: cover;
}

header .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.content h1 {
  font-size: 110px;
  letter-spacing: 3px;
}

.content .discription {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content p {
  width: 75%;
  letter-spacing: 0.5px;
  font-size: 20px;
}
.button-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button {
  text-decoration: none;
  margin: 50px 0;
  width: 150px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 9px 30px;
  border: 1px solid #fff;
  border-radius: 10px;
  transform: scale(1.1);
  box-shadow: 5px 5px #fff;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.button:hover {
  box-shadow: 10px 10px 0 0 #fff;
}

@media (max-width: 900px) {
  .content h1 {
    font-size: 70px;
  }

  .content p {
    width: 100%;
    letter-spacing: 0.6px;
    font-size: 15px;
  }
}
