* {box-sizing: border-box;}
body {
    margin: 0;
    padding: 0;
    font-family: monospace;
      background: #011928;
}


.toto{
    max-width: 100%;
    height: auto;
    text-align: center;
}
.preload{
    width: 100%;
    height: 100%;
      background: #011928;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
.logo{
    width: 500px;
    height: auto;
    margin: 300px auto 50px auto;
    font-size: 50px;
    text-shadow: -1px 2px 2px #000;
    text-align: center;
    color: azure;
     max-width: 90%;
 
}
.loader-frame{
    width: 70px;
    height: 70px;
    margin: auto;
    position: relative;
}
.loader1, .loader2{
    position: absolute;
    border: 5px solid transparent;
    border-radius: 50%;
}
.loader1{
    width: 70px;
    height: 70px;
    border-top: 10px solid; color: #389258;
    border-bottom: 10px solid; color: #389258;
    animation: clockwisepin 2s linear 3;
   
    top: 200px;
}
.loader2{
    width: 70px;
    height: 70px;
    border-left: 10px solid; color: #aec19d;
    border-right: 10px solid; color: #aec19d;
    
   
    animation: anticlockwisepin 2s linear 3;
     
    top: 200px;
}

@keyframes clockwisepin{
    from{transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@keyframes anticlockwisepin{
    from{transform: rotate(0deg);}
    to {transform: rotate(-360deg);}
}

@keyframes fadeout{
    from{opacity: 1;}
    to{opacity: 0;}
}





.spinner {
  width: 70px;
  height: 70px;

  position: relative;
  margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

