body {
  margin: 0;
  /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
  background-color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

p,
a,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

header,
footer {
  flex-shrink: 0;
}

header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  color: #222;
  background-color: white;
  width: 100%;
}

header img {
  width: 80vw;
}

header h1#page-title {
  display: flex;
  justify-content: center;
  font-size: 3vw;
  margin: 3vw auto;
}

a {
  text-decoration: none;
  color: lightblue;
}
a:visited {
  color: lightblue;
}
a:hover {
  color: aqua;
}

hr {
  width: 80%;
  background-color: #aaa;
  border: 0;
  height: 4px;
}

/* Main */
main {
  flex-grow: 1;
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2vw;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Footer, etc. */
footer {
  color: #aaa;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 5vw;
}

#fine-print {
  display: flex;
  background-color: #222;
  font-size: 0.5em;
  height: 96px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* main.html */
#welcome-message {
  margin: auto;
}
#welcome-message h2 {
  margin-bottom: 1vw;
}

#welcome-message-text {
  font-size: 2.4vw;
  width: 100%;
  background-color: #222;
  text-align: center;
  padding-top: 2vw;
  padding-bottom: 2vw;
  color: #eee;
}

#order-number-text {
  font-size: 1.4vw;
  width: 50vw;
  background-color: #222;
  text-align: center;
  margin: 3vw auto;
  height: 4.6vw;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.3vw;
}

#main-page-links {
  width: 80vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.video-wrapper {
  width: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  padding: 2vw 0;
}

/* digitalorder page */
#error-section {
  background-color: yellow;
  width: 100%;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid red;
  border-bottom: 1px solid red;
}
#error-text {
  color: red;
}

.hidden {
  display: none !important;
}

/* FAQ page */

#faq-list {
  margin-top: 4vw;
  width: 70vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

#faq-list li {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.faq-question {
  font-weight: bolder;
}
.faq-question::before {
  content: "Q : ";
}
.faq-answer {
  padding-left: 1vw;
}
.faq-answer::before {
  content: "A - ";
  font-weight: bolder;
}
