body {
  background: #f0f0f0;
}

.root {
  display: block;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100vw;
  height: 100%;
}

/* ======== menubar ======== */

.menubar-container {
  z-index: 100;
  position: fixed;
  display: table;
  width: 100vw;
  height: var(--side-height);
  top: 0;
}

.menubar-child {
  display: table-cell;
  vertical-align: middle;
}

/* ======== content ======== */

.content-container {
  margin-top: var(--side-height);
  display: block;
  width: 100%;
}

.content-child {
  max-width: 960px;
  margin: auto;
}


@media screen and (max-width: 720px) {
  .root {
    flex-direction: column;
  }

  .search-container {
    display: none !important;
  }

  .menubar {
    justify-content: space-between !important;
  }

  .content__actions {
    display: none !important;
  }

  .content__voting {
    display: none !important;
  }

  .content-container {
    padding: 0;
    max-width: 100%;
  }

  .contribute-form {
    padding: 10px !important;
  }

  .steps-indicators {
    display: none !important;
  }

  article {
    padding: 10px;
  }
  
  h1 {
    font-size: 22px
  }
}
