* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  /* IE */
}

body {
  color: white;
  padding: 2em 5em;
  font-family: ubuntu, helvetica, verdana, arial, sans-serif;
  background: url("img/afkc.svg") no-repeat center center/contain #333;
  /*background-size: 519px 690px;*/
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  /* IE, flex: 1 should be enough*/
  /* stupid IE10 tweener syntax */
  -ms-flex-preferred-size: auto;
}

@keyframes disclaimer {
  from {
    opacity: 0;
    border-radius: 0;
  }
  to {
    opacity: 1;
    border-radius: 3em;
  }
}
@-webkit-keyframes disclaimer {
  from {
    opacity: 0;
    border-radius: 0;
  }
  to {
    opacity: 1;
    border-radius: 3em;
  }
}
.disclaimer {
  background-color: #ff0000;
  padding: 2rem 5rem;
  max-width: 70%;
  text-align: center;
  text-shadow: 1px 1px 1px #333;
  text-transform: uppercase;
  margin: 40px auto;
  font-weight: bold;
  opacity: 0;
  -webkit-animation: disclaimer 5s forwards;
  animation: disclaimer 5s forwards;
}

#index {
  text-align: center;
}

.group:after {
  content: "";
  display: table;
  clear: both;
}

.group {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}

h1, h2 {
  text-align: center;
}
h1 a, h2 a {
  color: white;
}

a {
  color: orange;
  text-decoration: none;
  /*&:visited {
      color: red;
  }*/
}
a:hover {
  text-decoration: underline;
}

#audio-container p {
  margin-top: 0;
  font-size: 0.9rem;
}

ol {
  font-size: 0.9rem;
  padding-left: 0;
  /*list-style-position: inside;*/
  -moz-columns: 4 auto;
  -webkit-columns: 4 auto;
  columns: 4 auto;
}
ol li {
  margin-left: 2.6em;
  line-height: 1.8em;
}
ol li p {
  display: none;
}
ol li a:hover {
  background-color: rgba(255, 165, 0, 0.3);
  padding: 3px 5px;
}

#footer {
  margin-top: 40px;
  text-align: center;
}

@media only screen and (max-width: 1500px), only screen and (max-device-width: 1500px) {
  ol {
    -moz-columns: 3 auto;
    -webkit-columns: 3 auto;
    columns: 3 auto;
  }
}
@media only screen and (max-width: 1000px), only screen and (max-device-width: 1000px) {
  body {
    background-position: top center;
  }

  ol {
    -moz-columns: 2 auto;
    -webkit-columns: 2 auto;
    columns: 2 auto;
  }
}
@media only screen and (max-width: 700px), only screen and (max-device-width: 700px) {
  body {
    background-attachment: fixed;
  }

  ol {
    -moz-columns: 1 auto;
    -webkit-columns: 1 auto;
    columns: 1 auto;
  }
}

/*# sourceMappingURL=style.css.map */
