body {
  background-color: #fff;
  font-family: "Roboto", sans-serif;
}

.page {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  max-width: 1366px;
  min-width: 320px;
  color: var(--color-gray-dark);
}

.scrollbar-hidden::-webkit-scrollbar {
  width: 0rem;
}

#page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.logo {
  height: 2.25rem;
  margin: 0.75rem;
}

.page-body {
  display: inline-flex;
  margin-top: 0.75rem;
  width: 100%;
}

.title-banner {
  position: relative;
  border-top-right-radius: 0.5rem;
}

.title-banner-text {
  position: sticky;
  top: 0;
  left: 0;
  margin-left: 2.75rem;
  padding-left: 1.25rem;
  transform: rotate(90deg);
  transform-origin: 0 0;
  white-space: nowrap;
}

.title-banner-text span {
  position: absolute;
}

p:first-of-type {
  /* removes space for first paragraphes */
  margin-top: 0;
}

#summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#summary .summary-section {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--color-gray-light);
  width: 100%;
  box-sizing: border-box;
  border-radius: 1rem;
}

#summary a.summary-section-title {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: bold;
}

#summary a.summary-section-title:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

#summary a {
  text-decoration: none;
  color: var(--color-gray-dark);
}

#summary a:hover {
  font-weight: bold;
}

ul {
  word-break: break-word;
  /* avoid overflow on small screens */
}

.warning {
  color: #e53e3e;
}

#backToTopLink {
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  padding: 0.5rem;
  background-color: #fff;
  transition: opacity 0.3s;
  display: none;
}

#backToTopLink a {
  text-decoration: none;
  color: var(--color-gray-dark);
}

#backToTopLink a:hover {
  font-weight: bold;
}

.question {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.response {
  transition: height 0.3s;
  overflow: hidden;
}

.arrow-icon {
  height: 1.5rem;
  width: 1.5rem;
  transition: all 0.3s ease-in-out;
}

.arrow-collapsed {
  transform: rotate(-90deg);
}

@media (min-width: 768px) {
  #summary {
      flex-direction: row;
  }

  #summary .summary-section {
    width: 31%;
  }

}

@media (min-width: 1280px) {
  :root {
    font-size: 112.5%;
  }
}