* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: manospace;
}

.preload {
  width: 100%;
  height: 100%;
  background: rgb(0, 128, 6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.logo {
  width: 300px;
  height: 220px;
  margin: 150px auto 150px auto;
  font-size: 55px;
  text-shadow: -1px 2px 2px #000;
  text-align: center;
  color: rgb(255, 0, 0);
}

.loader-frame {
  width: 70px;
  height: 70px;
  margin: auto;
  position: relative;
}

.loader1,
.loader {
  position: absolute;
  border: 5px solid azure;
  border-bottom: 5px solid azure;
  border-radius: 50%;
  /* Make element circular */
}

.loader1 {
  width: 70px;
  height: 70px;
  /* border-top: 5px solid rgb(9, 255, 0);
  border-bottom: 5px solid rgb(255, 0, 0); */
  animation: clockwisespin 3s linear 3;
}

.loader2 {
  width: 70px;
  height: 70px;
  border-top: 5px solid rgb(9, 255, 0);
  border-bottom: 5px solid rgb(255, 0, 0);
  border-radius: 50%;
  /* Make element circular */
  top: 5px;
  left: 5px;
  animation: anticlockwisespin 3s linear 3;
}

@keyframes clockwisespin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes anticlockwisespin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}