@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Luckiest Guy", cursive;
}

.container {
  width: 100%;
  height: 100vh;
  background-color: rgb(3, 138, 3);
  display: flex;
  align-items: center;
  flex-direction: column;
}

.container h1 {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 400;
  padding-top: 150px;
}

.center-div {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgb(97, 96, 96);
  margin-top: 30px;
  border: 1px solid #000;
  box-shadow: 5px 5px 0px rgba(255, 255, 255);
  padding: 16px;
}

.text-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 21px;
}

.text-box input {
  width: 200px;
  height: 40px;
  background-color: rgb(179, 18, 18);
  border: 1px solid #000;
  box-shadow: 2px 3px 0px rgba(255, 255, 255);
  outline: none;
  text-align: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 100;
}

.text-box p {
  font-size: 25px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 2px;
  font-weight: 100;
}

.center-div img {
  width: 200px;
  height: 200px;
  margin: 16px 0;
  cursor: pointer;
}

.center-div .btn {
  width: 200px;
  height: 40px;
  background-color: rgb(51, 97, 196);
  border: 1px solid #000;
  box-shadow: 2px 3px 0px rgba(255, 255, 255);
  outline: none;
  text-align: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 100;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#downloadBtn {
  margin-top: 10px;
  display: none;
}

#downloadBtn.active {
  display: flex;
}

@media (max-width: 400px) {
  .container h1 {
    font-size: 25px;
    padding-top: 90px;
    font-weight: 100;
  }

  .center-div {
    width: 70%;
  }

  .text-box input {
    width: 150px;
  }

  .text-box p {
    font-size: 19px;
  }

  .center-div img {
    width: 150px;
    height: 150px;
  }

  .center-div button {
    width: 150px;
  }
}

@media (max-width: 1100px) {
  .container h1 {
    font-size: 30px;
    padding-top: 120px;
    font-weight: 100;
  }

  .center-div {
    width: 70%;
  }

  .text-box input {
    width: 180px;
  }

  .text-box p {
    font-size: 19px;
  }

  .center-div img {
    width: 150px;
    height: 150px;
  }

  .center-div button {
    width: 180px;
  }
}
