.layout-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.astronaut-layout {
  height: 100%;
}
.astronaut-layout--grow {
  flex-grow: 1;
}
.astronaut-layout--has-max-width .astronaut-layout__content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: var(--content-max-width);
  padding: var(--container-padding);
  box-sizing: border-box;
}