/* -------------------- General Body -------------------- */
body {
  background-color: rgb(247, 0, 62);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* -------------------- Header Blocks -------------------- */
.Header h1,
h1 {
  color: rgb(0, 110, 255);
  display: inline-block;
  padding: 15px 20px;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  background-color: rgb(243, 243, 243);
  margin: 30px auto;
  font-size: 32px;
  word-wrap: break-word;
  white-space: normal;
}

/* -------------------- Sub Headings -------------------- */
h2 {
  font-size: 24px;
  color: white;
  margin: 20px auto;
  max-width: 700px;
  line-height: 1.6;
}

/* -------------------- Lists -------------------- */
ul {
  list-style-type: none; /* remove bullets */
  padding: 0;
  margin: 20px auto;
  max-width: 700px;
  text-align: left;      /* list items left aligned */
}

ul li {
  font-size: 20px;
  color: white;
  margin: 10px 0;
  line-height: 1.6;
}

/* -------------------- Form / Buttons -------------------- */
form {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

input[type="submit"],
.yes, .no {
  height: 50px;
  width: 150px;
  border-radius: 25px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

/* Yes / No buttons color */
.yes {
  background-color: green;
  color: white;
}

.no {
  background-color: red;
  color: white;
}

.yes:hover {
  background-color: darkgreen;
}

.no:hover {
  background-color: darkred;
}

/* Special spans */
span {
  color: lawngreen;
}

/* -------------------- Mobile Responsive -------------------- */
@media (max-width: 600px) {

  .Header h1,
  h1 {
    font-size: 20px;
    width: 90%;
  }

  h2 {
    font-size: 16px;
    padding: 0 10px;
  }

  ul li {
    font-size: 16px;
  }

  input[type="submit"],
  .yes, .no {
    width: 120px;
    height: 45px;
    font-size: 14px;
  }
}
