body {
  background-color: #000;
  font-size: 16px;
  transition: all 1.5s;
}
body * {
  /*transition: $transition;*/
}
body .header-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #000;
  box-shadow: #000 0 0 20px 20px;
}
body .about-text {
  color: #DDD;
  margin: 120px 40px 40px;
  font-family: 'Josefin Sans', sans-serif;
  transition: margin 1.5s;
}
body span.percent-adjust {
  font-size: 1.4em;
  font-weight: 100;
  margin: 0 -0.08em 0 -0.15em;
}
body .logo {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  color: blue;
  font-size: 2em;
  position: fixed;
  top: 10px;
  left: 16px;
  text-decoration: none;
}
body .about-btn {
  font-family: 'Josefin Sans', sans-serif;
  color: red;
  font-size: 1em;
  position: fixed;
  top: 27px;
  right: 20px;
  display: table;
  text-align: right;
  text-transform: uppercase;
  text-decoration: none;
}
body .clock-container {
  position: absolute;
  top: 50%;
}
body .clock-container .clock {
  position: relative;
  top: -40px;
}
body .clock-container .clock .title {
  display: none;
}
body .clock-container .clock .time {
  position: relative;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.6) 0 0 3px;
  color: #0000FF;
  font-size: 2em;
  transition: all 1.5s;
}
body .clock-container .clock .time span {
  font-family: 'Josefin Sans', sans-serif;
}

@media screen and (max-width: 500px) {
  body .about-text {
    margin: 120px 20px 20px;
  }
}
/* SUNSET THEME */
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes white-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bg-pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.4;
  }
}
@-webkit-keyframes bg-layer-pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.4;
  }
}
.body.sunset .sunset-container {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  bottom: auto;
}
.body.sunset .sunset-container .horizon {
  position: relative;
  top: -1px;
  height: 2px;
  background: #0000ff;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0000ff 0%, #ff0000 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0000ff), color-stop(100%, #ff0000));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #0000ff 0%, #ff0000 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #0000ff 0%, #ff0000 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #0000ff 0%, #ff0000 100%);
  /* IE10+ */
  background: linear-gradient(to right, #0000ff 0%, #ff0000 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000ff', endColorstr='#ff0000',GradientType=1 );
  /* IE6-9 */
  box-shadow: rgba(255, 255, 255, 0.4) 0 0 5px;
}
.body.sunset .sunset-container .sun-container {
  position: absolute;
  top: 0;
  left: 0%;
}
.body.sunset .sunset-container .sun-container .sun {
  position: absolute;
  top: -25px;
  left: -100px;
  width: 200px;
  height: 50px;
  /*background-color:rgba(255,255,255,0.5);*/
}
.body.sunset .sunset-container .sun-container .sun .sun-spot {
  position: absolute;
  border-radius: 100px;
  /*background-color:rgba(255,255,255,0.2);*/
  /*box-shadow:rgba(255,255,255,0.2) 0 0 20px 8px;*/
  -webkit-animation: pulse 4s linear infinite;
  -moz-animation: pulse 4s linear infinite;
  -webkit-transform: scale(1, 0.5);
  -moz-transform: scale(1, 0.5);
}
.body.sunset .sunset-container .sun-container .sun .sun-spot.number1 {
  width: 100% !important;
  height: 100% !important;
  top: 0% !important;
  left: -20% !important;
  -webkit-animation: bg-pulse 4s linear infinite;
  -moz-animation: bg-pulse 4s linear infinite;
  -webkit-transform: scale(3, 4);
  -moz-transform: scale(3, 4);
}
.body.sunset .sunset-container .sun-container .sun .sun-spot.number2 {
  width: 100% !important;
  height: 100% !important;
  top: 0% !important;
  left: -20% !important;
  -webkit-animation: bg-layer-pulse 4s linear infinite;
  -moz-animation: bg-layer-pulse 4s linear infinite;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
}
.body.sunset .sunset-container .sun-container .sun .sun-spot.last {
  background-color: rgba(255, 255, 255, 0.25) !important;
  box-shadow: rgba(255, 255, 255, 0.25) 0 0 20px 18px !important;
  -webkit-transform: scale(1, 0.2);
  -moz-transform: scale(1, 0.2);
  -webkit-animation: none;
  -moz-animation: none;
  width: 60% !important;
  height: 60% !important;
  top: 20% !important;
  left: 20% !important;
}
.body.sunset .sunset-container .sun-container .sun .sun-spot.last.pulse {
  -webkit-animation: white-pulse 4s linear infinite;
  -moz-animation: white-pulse 4s linear infinite;
}