html{
  box-sizing: border-box
}
*, :after, :before {
  box-sizing:inherit
}
body {
  color: #999;
  background-color: #232323;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.4375;
  padding: 0;
  margin: 0
}
.header {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: 10;
  max-width: 80%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 640px) {
  .header {
    max-width: 640px;
  }
}
#logo {
  display: block;
  width: 100%;
  margin: 0 auto 4rem;
}
#logo svg {
  display: block;
  fill: #999;
}
p {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.icon {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: 24px;
  text-align: center;
  margin: 0 8px;
}
.icon svg {
  display: block;
  width: auto;
  height: 100%;
  fill: #999;
  -webkit-transition: fill .3s ease-in-out;
  transition: fill .3s ease-in-out
}
.icon:hover svg {
  fill: #fff;
}
