body {
  background: linear-gradient(135deg, #0f172a, #e5e7eb);

  margin: 0;
  height: 100vh;
  overflow: hidden;
}
.note {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #c9d7de;
}
.note h1 {
  font-size: 60px;
  margin: 0;
  font-family: "Times New Roman", Times, serif;
}
.yes {
  position: absolute;
  top: 50%;
  left: 30%;
  padding: 30px 60px;
  font-size: 40px;
  color: #262916;
  background-color: #748eb9;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  .modal {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .modal-content {
    background: #fff;
    padding: 20px 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    max-width: 400px;
  }

  .modal img {
    width: 150px;
    margin-top: 10px; /* spacing below the paragraph */
  }

  .modal-warning {
    font-size: 20px;
    font-weight: bold;
    color: #b71c1c; /* dark red warning color */
    margin-bottom: 10px; /* space between text and image */
  }

  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
  }
}
.no {
  position: absolute;
  top: 50%;
  left: 60%;
  padding: 30px 60px;
  font-size: 40px;
  color: #262916;
  background-color: #ba7880;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
.modal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: #281f1f;
  padding: 20px 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  max-width: 400px;
}

.modal img {
  width: 400px;
  height: auto;
  margin-top: 10px; /* spacing below the paragraph */
}

.modal-warning {
  font-size: 30px;
  font-weight: bold;
  color: #b71c1c; /* dark red warning color */
  margin-bottom: 10px; /* space between text and image */
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
  color: #333;
}

@media (max-width: 700px) {
  .note h1 {
    font-size: 40px;
  }
  .yes {
    padding: 15px 30px;
    font-size: 25px;
    left: 20%;
  }
  .no {
    padding: 15px 30px;
    font-size: 25px;
  }
  .modal-content {
    max-width: 90%;
    padding: 15px 20px;
  }
  .modal img {
    width: 80%;
    height: auto;
  }
  .modal-warning {
    font-size: 25px;
  }
}
