@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Roboto", sans-serif;
  text-align: center;
  padding: 40px;
}
input,
button {
  padding: 12px;
  margin: 10px 0;
  font-size: 16px;
}
#message {
  margin-top: 20px;
  font-weight: bold;
}
#count {
  font-size: 14px;
  margin-top: 10px;
  color: gray;
}
#modal {
  display: none; /* Ensure it's hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.submitBtn,
.closeBtn {
  background: linear-gradient(to right, #ffb86c, #f78ccf);
  font-size: 16px;
  border: 1px solid #f78ccf;
  border-radius: 7px;
}

.input {
    outline: none;
    border-radius: 7px;
    border: 1px solid black;
}