:root {

  --cf-highlight: rgba(0,162,175,1)!important;
}



@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

body, html {

  width: 100%;
  height: 100%;
  overflow: hidden;
}

#rotating {
  left: 0;
  top: 0;

  -webkit-animation: rotating 20s linear infinite;
  -moz-animation: rotating 20s linear infinite;
  -ms-animation: rotating 20s linear infinite;
  -o-animation: rotating 20s linear infinite;
  animation: rotating 20s linear infinite;
}

#image {
  top: 12px;
  z-index: 20;
}

#rotating IMG {
  width:100%;
  height: auto;
}

body {
  background: black;
  color: white;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

h1 {
  font-size: 300%;
}

strong {
  font-weight: 800;
}

.small {
  letter-spacing: 4px!important;
}

a, a:hover {
  color:var(--cf-highlight);
  text-decoration: none;
}

#image, #image IMG {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

#image IMG {
  transform: scale(1);
}

#image:hover IMG {
  transform: scale(1.03);
}

@media (max-width: 991px) {

  #image {
    top: 0px;
    z-index: 20;
  }

  h1 {
    font-size: 230%;
  }
}
