html,
body {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

html {
  font-family: 'Source Sans Pro';
  color: var(--text-color);
  font-size: 16px;
}

body {
  font-size: var(--text-font-size);
}

* {
  box-sizing: border-box;
}

.body-container {
  overflow: auto;
  height: calc(100% - 3rem);
}

footer {
  position: fixed;
  height: 3rem;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  border-top: 1px solid var(--border-color);
  background: white;
}

footer .description {
  text-align: right;
}

span.separator {
  padding: 0 5px;
  display: inline-block;
}

@media only screen and (max-width: 599px) {
  footer {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media only screen and (max-height: 350px) {
  .body-container {
    overflow: visible;
    height: initial;
  }

  body {
    overflow: auto;
  }

  footer {
    position: relative;
  }
}