:root {
  --content-width: min(100%, 520px);
  --selectors-height: min(30px, 5vh);
}

#container {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 600ms;
  overflow: hidden;
}

.selectors-container {
  width: var(--content-width);
  height: var(--selectors-height);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

#content {
  width: var(--content-width);
  height: calc(100% - var(--selectors-height) * 2);
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

#menu__container, .menu-content__container {
  width: 100%;
  height: 100%;
}

.menu-content__container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  animation: fade-content 400ms;
}

.menu-content__container p {
  white-space: pre-line;
}

@keyframes fade-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* DISABLE UNECESSARY TRANSITION AND ANIMATION FOR MOBILE CLIENTS */
@media (pointer: coarse)  {
  #container {
    transition: none;
  }

  .menu-content__container {
    animation: none;
  }
}