body {
    margin: 0;
}

#rotator {
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    border: 8px solid white;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.75);
    transition-property: width, height, border;
    transition-duration: 1s;
    border-radius: 300px;
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
  from {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      -ms-transform: rotate(0deg);;
  }
  to {
      -webkit-transform: rotate(-360deg);
      -moz-transform: rotate(-360deg);
      -o-transform: rotate(-360deg);
      -ms-transform: rotate(-360deg);
  }
}

#preloader {
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #62B16E;
    transition-property: width, height, border-bottom-left-radius, border-bottom-right-radius;
    transition-duration: 1s;
    position: fixed;
}

#preloader-container {
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}