/* styles.css */
body {
  /* background-color: rgb(129, 216, 208); /* #81D8D0 */
  background-color: rgb(10, 186, 181); /* #0abab5 */
  margin: 0px;
}

.header,
.footer {
  background: lightskyblue;
  padding: 8px;
  text-align: center;
  position: fixed;
  left: 0px;
  width: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}

.header {
  top: 0px;
}

.footer {
  bottom: 0px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.message {
  margin-top: 32px;
  max-width: 750px;
}

.message,
.question {
  text-align: center; /* remember this one */
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #e0f7ff;
  /* color: white /* OR */
}

.gif {
  margin: 16px auto;
  border: 1px solid white;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  display: block;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: right;
}

.yes-button {
  margin: 48px;
  border-radius: 32px;
  padding: 16px;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 150px;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);

  margin-right: 325px;
  border: 2px solid #e0f7ff;
  background-color: lightskyblue;
  color: white;
}

.no-button {
  margin: 48px;
  border-radius: 32px;
  padding: 16px;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 150px;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);

  border: 2px solid lightskyblue;
  background-color: white;
  color: lightskyblue;
  position: absolute;
}
