* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poor Story", system-ui;
}

a {
  text-decoration: none;
  color: white;
  text-align: center;
}

img {
    pointer-events: none;
}

.gifs img {
  width: 500px;
  height: 300px;
}

.gif2 {
  left: -15% !important;
  scale: 0.5 !important;
  bottom: 0;
  rotate: -15deg;
}

span {
  text-align: center;
  color: white;
  display: flex;
}

body {
  background-image: url("images/predator-3D.6-transformed.jpeg");
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}

.navbar {
  width: 100%;
  display: grid;
  grid-template-columns: 30vw 50vw;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid white;
}

.navbar > div:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar > div:nth-child(1) span {
  font-weight: 600;
  font-size: 1.5em;
  letter-spacing: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar > div:nth-child(1) img {
  width: 60px;
}

.navbar > div:nth-child(2) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 60px;
}

.socials img {
  width: 44px;
  background-color: white;
  border-radius: 50%;
}

.what-is-dap {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10vh;
  backdrop-filter: blur(10px);
  position: relative;
  padding: 50px 0;
}

.what-is-dap > span:nth-child(1) {
  color: #e3655b;
  font-weight: 600;
  font-size: 2.5em;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

.what-is-dap > span:nth-child(2) {
  font-size: 1.6em;
  line-height: 150%;
  letter-spacing: 2px;
}

.what-is-dap > div {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}

.what-is-dap > div > img:nth-child(3) {
  position: absolute;
  left: 0;
  scale: 0.8;
}

.imgg6 {
  bottom: -18vh;
  scale: 1.5;
}

.what-is-dap > div > img:nth-child(4) {
  position: absolute;
  right: -15%;
  scale: 0.6;
  rotate: 15deg;
}

.how-to-dap {
  width: 80%;
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 8vh 3vw;
  margin-bottom: 20vh;
}

.how-to-dap > span {
  color: #5b8c5a;
  font-weight: 600;
  font-size: 2.5em;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

.how-to-dap > div {
  display: flex;
  flex-direction: column;
  gap: 5vh;
}

.how-to-dap > img {
  border-radius: 30px;
  width: 200px;
  position: absolute;
}

.step-no {
  font-weight: 700;
  color: #3066be;
  font-size: 4em;
}

.imgg1 {
  rotate: 30deg;
  top: 0;
  left: -10%;
}

.imgg2 {
  rotate: -30deg;
  bottom: -25%;
  left: 0;
}

.imgg3 {
  top: -32%;
  rotate: 10deg;
}

.imgg4 {
  rotate: 10deg;
  top: 0;
  right: -5%;
}

.imgg5 {
  bottom: -25%;
  right: 0;
  rotate: 20deg;
}

.step {
  align-items: center;
  display: flex;
  flex-direction: row;
}

.step-des {
  font-size: 1.3em;
  letter-spacing: 2px;
}

.step span:nth-child(1) {
  margin-right: 7vh;
}

.step1 img {
  margin-left: 10px;
  width: 30px;
}

.rate-dap {
  margin-top: 15vh;
  padding: 8vh 3vw;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  backdrop-filter: blur(10px);
}

.rate-dap > span {
  color: #f4d35e;
  font-weight: 600;
  font-size: 2.5em;
  letter-spacing: 3px;
}

.rate-dap img {
  height: 300px;
}

.rate-dap > div {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.rate-dap > div > div {
  gap: 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.rate-dap > div > div span {
  font-size: 1.3em;
  letter-spacing: 2px;
}


@media only screen and (max-device-width:700px) {
    .navbar {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .what-is-dap > div {
        display: flex;
        flex-direction: column;
    }

    .what-is-dap > div > img:nth-child(3) {
        position: relative;
    }

    .how-to-dap > img {
        width: 100px;
    }

    .imgg1 {
        top: -10%;
    }

    .imgg3 {
        top: -10%;
    }

    .imgg2 {
        bottom: -10vh;
    }

    .imgg5 {
        bottom: -10vh;
    }

    .rate-dap img {
        scale: 0.8;
    }

    .what-is-dap > div > img:nth-child(4) {
      position: relative;
      right: 0;
    }
}