
body{
  background-color: black;
  overflow: hidden;

}


.loading{
  display: flex;
  width: 100%;
  height:auto;
  z-index: 999999999999;
  background-image: url(../images/background/bg.webp);
  background-size: cover;
  position: fixed;
  top: 0px;
  left:0px;
  right: 0px;
  bottom: 0px;
}

.loader {
    position: relative;
    width: 221px;
    height: 227px;
    display: flex;
    justify-items: center;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap-reverse;
    justify-content: center;
}

.loader:before , .loader:after{
  content: '';
  border-radius: 50%;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset;
}
.loader:after {
  box-shadow: 0 2px 0 #FF3D00 inset;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {  transform: rotate(0)}
  100% { transform: rotate(360deg)}
}