body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #FFF;
    margin: 0;
    text-align: center;
    font-size: 1.5em;
}
#wrapper {
    width: 100%;
    height: 100vh;
}

.ipban {
    background-color: #f00;
    color: #fff;
}

#container {
    min-width: 300px;
    width: 50%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 5%;
}
.loader {
    position: relative;
    top: calc(50% - 64px);
    left: calc(50% - 64px);
    width: 128px;
    height: 128px;
    border-radius: 50%;
    perspective: 800px;
}

.inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;  
}

.inner.blue {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid rgb(149,193,31);
}

.inner.green {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid rgb(0,159,227);
}

.inner.black {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid #333;
}

@keyframes rotate-one {
    0% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate-two {
    0% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes rotate-three {
    0% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

@media only screen and (max-width: 600px) {

  body {
      font-size: 1em;
  }

}