/* Прижатие футера к низу страницы */
html {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}
