/* Fix for space below footer */
html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#main-content {
  flex: 1 0 auto;
}

.footer-container {
  flex-shrink: 0;
}

/* Remove any extra space after footer */
body > :last-child {
  margin-bottom: 0;
}