html, body {
  min-height: 100%;
}

body {
  font-size: 14px;
  line-height: 1.428571429;
  color: #fff;
  background-color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
}

a {
  color: #fff;
}

h1, h2 {
  color: #ffd61c;
}

h3,h4,h5,h6 {
  color: #fff;
}

a:link { text-decoration: none; color: #fff; }

a:hover { text-decoration: none; color: #ffd61c; }


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

.site-wrap {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  overflow: hidden;
}

.site-content {
  flex: 1 0 auto;
}

.site-top, .site-footer {
  flex: 0 0 auto;
}

.site-footer {
  text-align: center;
}

.site-footer__menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__menu li {
  display: inline-flex;
}

.site-footer__menu li:not(:last-child)::after {
  padding: 0 6px;
  content: "|";
}



