body{
    background-color: #000000 !important
    
}

#rounded{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	width: 120px;
	height: 120px;
}

.loading{
	padding: 5px;
	width: calc(100% - 0px);
	height: calc(100% - 0px);
	border:5px solid #eaeaea;
	border-radius: 50%;
	border-top: 5px solid #dce83a;
	border-bottom: 5px solid #111e6a;
	animation: rotate 5s linear infinite;
}

@keyframes rotate 
{
	100% {transform: rotate(360deg)}
}
.container{
    text-align: center;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
  }
  .container span{
    text-transform: uppercase;
    display: block;
  }
  .text1{
    color: white;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 10px;
    background: black;
    position: relative;
    animation: text 3s 1;
    
  }
  .text2{
    font-size: 60px;
    color: #2414b3;
    text-shadow:
    3px 3px 0 rgb(255, 255, 255),
  -1px -1px 0 rgb(255, 255, 255),  
   1px -1px 0 rgb(255, 255, 255),
   -1px 1px 0 rgb(255, 255, 255),
    1px 1px 0 rgb(255, 255, 255);
  }
  
  @keyframes text {
    0%{
      color: rgb(255, 255, 255);
      margin-bottom: -75px;
    }
    30%{
      letter-spacing: 10px;
      margin-bottom: -90px;
    }
    85%{
      letter-spacing: 8px;
      margin-bottom: -90px;
    }
  }