body {
  font-family: 'Open Sans', sans-serif;
  color: #000;
}
#content {
  text-align: center;
  position: fixed;
  width: 100%;
  top: 30%;
}
@media all and (max-width: 640px) {
  #content .title {
    font-size: 8vw;
  }
  #content .icons .icon {
    font-size: 4vw;
  }
}
.title {
  font-size: 35px;
  font-weight: normal;
  opacity: 0;
  -webkit-animation: opacityFadeOutIn 1.5s ease-in forwards;
  -moz-animation: opacityFadeOutIn 1.5s ease-in forwards;
  -o-animation: opacityFadeOutIn 1.5s ease-in forwards;
  animation: opacityFadeOutIn 1.5s ease-in forwards;
}
.icons .icon {
  display: none;
  padding: 10px;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  opacity: 0;
}
.icons .icon.loaded {
  display: inline;
  -webkit-transition: background-color 0.4s 0s ease, opacity 1.5s 2s ease;
  -moz-transition: background-color 0.4s 0s ease, opacity 1.5s 2s ease;
  -o-transition: background-color 0.4s 0s ease, opacity 1.5s 2s ease;
  transition: background-color 0.4s 0s ease, opacity 1.5s 2s ease;
  -webkit-animation: opacityFadeOutIn 1.5s ease-in forwards;
  -moz-animation: opacityFadeOutIn 1.5s ease-in forwards;
  -o-animation: opacityFadeOutIn 1.5s ease-in forwards;
  animation: opacityFadeOutIn 1.5s ease-in forwards;
}
.icons .icon:hover {
  color: #fff;
  background-color: lightBlue;
}
.icons .icon.off-screen {
  position: absolute;
  left: -1000px;
  top: -1000px;
}
/* looping mixin */
.icons .icon:nth-child(5) {
  -webkit-animation-delay: 2.25s;
  -moz-animation-delay: 2.25s;
  -o-animation-delay: 2.25s;
  animation-delay: 2.25s;
}
.icons .icon:nth-child(4) {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.icons .icon:nth-child(3) {
  -webkit-animation-delay: 1.75s;
  -moz-animation-delay: 1.75s;
  -o-animation-delay: 1.75s;
  animation-delay: 1.75s;
}
.icons .icon:nth-child(2) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.icons .icon:nth-child(1) {
  -webkit-animation-delay: 1.25s;
  -moz-animation-delay: 1.25s;
  -o-animation-delay: 1.25s;
  animation-delay: 1.25s;
}
lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes opacityFadeOutIn{ 0%{ opacity: 0 } 100%{ opacity: 1 }}
@-moz-keyframes opacityFadeOutIn{ 0%{ opacity: 0 } 100%{ opacity: 1 }}
@-o-keyframes opacityFadeOutIn{ 0%{ opacity: 0 } 100%{ opacity: 1 }}
@keyframes opacityFadeOutIn{ 0%{ opacity: 0 } 100%{ opacity: 1 };
}
