@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./challenge_1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(4px);
  z-index: -1;
}

.top img {
  height: 40px;
  padding: 5px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.image img {
  height: 60px;
}

.div-container {
  background-color: white;
  margin-top: 10%;
  height: 40vh;
  width: 45vw;
  display: flex;
  border: 1px solid white;
  border-radius: 25px;
  align-items: center;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.div-container p {
  text-transform: uppercase;
  color: black;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

.bn {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.bn button {
  border: none;
  padding: 15px 20px;
  gap: 10px;
  border-radius: 18px;
  background-color: rgb(22, 190, 103);
  color: white;
  font-weight: bolder;
  transition: 0.3s;
  cursor: pointer;
}

.bn button:hover {
  background-color: rgb(67, 218, 37);
  transform: scale(1.1);
}


@media (max-width: 575.98px) {
  .top img {
    height: 30px;
  }

  .image img {
    height: 45px;
  }

  .div-container {
    width: 85vw;
    height: auto;
    padding: 15px;
  }

  .div-container p {
    font-size: 1.1rem;
  }

  .bn {
    gap: 20px;
  }

  .bn button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}


@media (min-width: 576px) and (max-width: 767.98px) {
  .div-container {
    width: 70vw;
    height: auto;
  }

  .div-container p {
    font-size: 1.3rem;
  }

  .bn button {
    padding: 12px 18px;
    font-size: 1rem;
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  .div-container {
    width: 55vw;
    height: auto;
  }

  .div-container p {
    font-size: 1.4rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .div-container {
    width: 50vw;
  }

  .div-container p {
    font-size: 1.5rem;
  }
}


@media (min-width: 1200px) {
  .div-container {
    width: 40vw;
  }

  .div-container p {
    font-size: 1.6rem;
  }
}
