body {
  background-image: url("Bg-first.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.heading {
  font-family: "Pinyon Script", cursive;
  font-size: 100px;
  color: black;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.main-body {
  font-family: 'Times New Roman', Times, serif;
  font-size: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 250px;
  margin-right: 250px;
  margin-bottom: 15px;
  border-radius: 10px;
  background-color: rgba(255, 90, 90, 0.8);
}

.question {
  font-family: "Pinyon Script", cursive;
  font-size: 70px;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 20px;
}
.yes-button {
  background-color: rgb(152, 0, 46);
  color: white;
  font-size: 50px;
  border: 5px;
  border-color: rgb(0, 0, 0);
  border-style: solid;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 15px;
  cursor: pointer;
  display: inline-block;
  margin-right: 70px;
}

.yes-button:hover {
  opacity: 0.8;
}

.yes-button:active {
  opacity: 0.5;
}

.no-button {
  background-color: white;
  color: rgb(152, 0, 46);
  font-size: 50px;
  border: 5px;
  border-style: solid;
  border-color: rgb(0, 0, 0);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 15px;
  cursor: pointer;
  display: inline-block;
  margin-left: 70px;
}

.no-button:hover {
  opacity: 0.8;
}

.no-button:active {
  opacity: 0.5;
}

.buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.yes-btn-text {
  text-decoration: none;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}