body {
  background: #282A3A;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  max-width: 80%;
  margin: auto;
}

nav {
  margin: 20px 0;
  font-size: 18px;
}

nav a {
  margin: auto 10px;
}

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

/* Make sure main content pushes footer down */
main {
  min-height: 75vh;
}

.hr {
  width: 85%;
  height: 5px;
  border-radius: 5px;
  display: block;
  margin: 20px 0;
  margin-left: auto;
  margin-right: auto;
  background: #B18234;
}

.vr {
  width: 5px;
  height: 60px;
  border-radius: 5px;
  display: inline-block;
  margin: 0 10px;
}

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

.no-bold {
  font-weight: normal;
}

.row {
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.faq {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.faq-item summary {
  display: block;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .question {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  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 200ms ease-out;
}

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

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  border: 2px solid transparent;
  transition: max-height 100ms ease-out;
}

.faq-item details[open]+.answer {
  max-height: 500px;
  transition: max-height 500ms ease-out;
  padding-bottom: 10px;
}