body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #fff;
  /* background:linear-gradient(to bottom, #f2f2f7, #fff); */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* For page-content holder */

.page-content {
  padding-top: 60px;
  min-height: calc(100vh - 150px);
  padding-bottom: 60px;
  width: 420px;
  margin: auto;
  position: relative;
  display: block;
  max-width: 420px;
  overflow: hidden;
  box-sizing: content-box;
}

/* For content holder */

.content-holder {
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
  padding: 15px;
  background-color: #fff;
  border-radius: 15px;
  /* box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.1); */
  -moz-box-shadow: 0 0 3px #ccc;
  -webkit-box-shadow: 0 0 3px #ccc;
  box-shadow: 0 0 3px #ccc;
  margin-top: 20px;
  margin-bottom: 25px;
  /* space from the bottom */
  /* border: 1px lightgray solid; */
}

.message-container {
  text-align: center;
}

.message-container h1,
.message-container h3 {
  color: #1c1c1e;
}

.message-container p {
  color: #3a3a3c;
}


.gradient-button {
  display: inline-block;
  padding: 10px 40px;
  font-size: 16px;
  border: none;
  color: white;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border-radius: 40px;
  transition: 0.5s;
  background: linear-gradient(to right, #f8bd00, #f19500, #eb6c00);
}

.gradient-button:active {
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}


/* For alert */

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 90%;
  max-width: 350px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#alertTitle {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 20px;
}

#alertMessage {
  margin: 0;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer {
  display: flex;
  justify-content: center;
}

.close-button {
  padding: 8px 16px;
  background-color: #e26a0d;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.close-button:hover {
  background-color: #DF6E20;
}

@media (max-width: 375px) {

}