/* sticky footer */

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1 0 auto;
}
.footer {
  height: 60px;
  background-color: #f5f5f5;
  flex-shrink: 0;
}

/* sticky footer */