/* =========================
Base Styles
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: rgb(154, 212, 216);
  font-family: Verdana, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

/* =========================
Layout Wrapper
========================= */
#wrapper {
  width: min(94vw, 520px);
  margin: 0 auto;
  padding: 10px 12px;
  overflow: visible;
}

/* =========================
Header
========================= */
#header {
  background-color: rgb(248, 119, 147);
  width: 100%;
  min-height: 50px;
  box-shadow: 3px 5px 7px rgb(33, 69, 72);
}

/* =========================
Typography
========================= */
h1 {
  width: 100%;
  font-size: 2rem;
  text-align: center;
  color: #ffffff;
  padding: 8px 0;
}

/* =========================
Images
========================= */
img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 10px auto;
  box-shadow: 3px 5px 7px rgb(33, 69, 72);
}

/* =========================
Disclaimer
========================= */
#entertainment {
  width: 100%;
  text-align: center;
  padding: 2px 0;
  color: rgb(0, 108, 124);
  font-size: 0.8rem;
}

/* =========================
Answer Boxes
========================= */
#answerBox,
#answerBox2 {
  position: relative;
  width: 100%;
  min-height: 70px;
  background: #fff;
  padding: 14px 12px;
  border-radius: 16px;
  margin: 12px 0;
  box-shadow: 3px 5px 7px rgb(33, 69, 72);
}
#answerBox2:focus {
  box-shadow: 5px 8px 10px rgb(33, 69, 72);
}

/* =========================
Buttons Sections
========================= */
#buttons1,
#buttons2,
.buttons1 {
  width: 100%;
  text-align: center;
  padding: 6px 0;
}

/* =========================
Inputs
========================= */
input[type="text"],
input[type="number"],
textarea,
select {
  font-size: 1.15rem;
}

input[type="button"] {
  font-size: 0.7rem;
}

/* =========================
Small Screen Adjustments
========================= */
@media (max-width: 480px) {
  html {
    font-size: 20px;
  }

  h1 {
    font-size: 1.8rem;
  }
}
#typeoptions {
  margin: auto 0;
  max-width: 100%;
  text-align: center;
}
.option {
  width: 70%;
  max-width: none;
  margin: 10px auto 0;
  font-size: 1.05rem;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: 3px 5px 7px rgb(33, 69, 72);
}

/* =========================
Links
========================= */
a {
  color: #397e8a;
}
a:visited {
  color: rgb(0, 0, 0);
}
a:hover {
  color: #000000;
  text-shadow: 1px 1px 1px rgb(3, 91, 129);
}
/* =========================
Buttons
========================= */
input[type="button"] {
  background-image: url("../images/pillPeach.png");
  background-size: cover;
  background-position: center;
  width: min(40vw, 150px); /* two buttons per row on phones */
  height: 40px;
  margin: 10px 0 0 0;
  font-size: 1.05rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid rgba(200, 33, 61, 0.539);
  box-shadow: 3px 5px 7px rgb(33, 69, 72);
}
.medbutton {
  background-image: url("../images/pillPeach.png");
  background-size: cover;
  width: min(40vw, 150px); /* two buttons per row on phones */
  height: 40px;
  margin: 10px 0 0 0;
  font-size: 1.05rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid rgba(200, 33, 61, 0.539);
  box-shadow: 3px 5px 7px rgb(33, 69, 72);
}
input[type="button"],
.medbutton {
  background-color: rgb(248, 119, 147);
}
/* =========================
Divider
========================= */
/* Fancy divider only when you choose it */
hr.divider {
  border: none;
  display: block;
  margin: 0 auto 10px;
  height: 10px;
  width: 100%;
  background-color: #abf1f6;
  box-shadow: 3px 5px 7px rgb(33, 69, 72);
  border-radius: 5px;
}

/* Normal hr everywhere else (like footer) */
hr {
  border: none;
  display: block;
  margin: 0 auto 10px;
  height: 10px;
  width: 100%;
  background-color: rgb(248, 119, 147);
  box-shadow: 3px 5px 7px rgb(113, 48, 78);
  border-radius: 5px;
}
/* =========================
Footer
========================= */
#footer {
  margin-top: 30px;
  width: 100%;
  height: 170px; /* Height of the footer */
  padding: 10px;
  color: #000;
  font-style: italic;
  text-align: center;
}
#ppfooter {
  margin-top: 50px;
  width: 100%;
  height: 170px; /* Height of the footer */
  padding: 8px;
  color: #000;
  font-style: italic;
  text-align: center;
}
