.loader {
  width: 106px;
  height: 56px;
  display: block;
  margin: 30px auto;
  background-image: linear-gradient(#ac1414 50px, transparent 0), linear-gradient(#1b1b1b 50px, transparent 0), linear-gradient(#129c47 50px, transparent 0), linear-gradient(#8d1b1b 50px, transparent 0), radial-gradient(circle 14px, #d31c1cf3 100%, transparent 0);
  background-size: 48px 15px , 15px 35px, 15px 35px, 25px 15px, 28px 28px;
  background-position: 25px 5px, 58px 20px, 25px 17px, 2px 37px, 76px 0px;
  background-repeat: no-repeat;
  position: relative;
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.loader::after,
.loader::before {
  content: '';  
  position: absolute;
  width: 56px;
  height: 56px;
  border: 6px solid #108d44;
  border-radius: 50%;
  left: -45px;
  top: -10px;
  background-repeat: no-repeat;
  background-image: linear-gradient(#d40d0d 64px, transparent 0), linear-gradient(#131212 66px, transparent 0), radial-gradient(circle 4px, #b11313 100%, transparent 0);
  background-size: 40px 1px , 1px 40px, 8px 8px;
  background-position: center center;
  box-sizing: border-box;
  animation: rotation 0.3s linear infinite;
}
.loader::before {
  left: 25px;
  top: 60px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
#loader{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    align-content: center;
    background-color:rgb(252, 252, 253);
    height: 100dvh;
}
.textc{
  color: aqua;
  transition: all 1s;
  animation: identifier 2s linear;
}
a.textc:hover{
  color: #1b368d;
  
}
@keyframes identifier {
  0%{
    transform: scale(0);
  }
  100%{
    transform: scale(1);
  }
}
@keyframes animation {
  0%{
    transform: scale(0);
  }
  100%{
    transform: scale(1);
  }
}
.anim{
  animation: animation 2s linear;
  
}
.h{
  color: aliceblue;
  text-transform: uppercase;
  transition: all 1s;
}
.h:hover{
  color: #d40d0d;
}


