body {
  background: #282A3A;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  padding-right: 5rem;
  padding-left: 5rem;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

nav {
  font-size: 18px;
}

nav a {
  margin: auto 10px;
}

a {
  color: #B18234;
  text-decoration: none;
}

header {
  border-bottom: 5px solid #B18234;
}

section {
  margin-top: 2rem;
}

footer {
  margin-top: auto;
  border-top: 5px solid #B18234;
  padding: 1rem;
}

.underline {
  text-decoration: underline;
}

.center {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.divide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 854px) {
  .divide {
    flex-direction: column;
    align-items: flex-start;
  }

  .divide>div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.5rem;
    /* margin-top: 0.5rem; */
  }
}

.inline {
  display: inline;
}

.big-text {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.subheading {
  margin-top: 3.5rem;
  border-bottom: 5px solid #B18234;
}

.download-badge-google {
  height: 60px;
}

.download-badge-apple {
  height: 40px;
  margin: 10px;
}

.faq-item {
  background: #3D4153;
  border-radius: 10px;
  margin: 10px;
  padding-left: 1rem;
}

.faq-item summary {
  display: block;
}

.faq-item .question {
  display: flex;
  align-items: center;
  height: 4rem;
}

.faq-item .question:hover {
  cursor: pointer;
}

.faq-item .question::before {
  content: "►";
  font-size: 1rem;
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
  transition: rotate 150ms ease-out;
}

.faq-item details[open] .question::before {
  rotate: 90deg;
  transition: rotate 150ms ease-out;
}

.faq-item .answer {
  padding-left: 1rem;
  padding-bottom: 1rem;
}