html {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    background-color: #3C3F48;
    scroll-behavior: smooth;
}

body {
    height: 100%;
}

.loading-state {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #625fff1e;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.loader {
    position: absolute;
    width:  48px;
    height: 48px;
    background: #de3500;
    transform: rotateX(65deg) rotate(45deg);
    top: 50%;
    left: 50%;
    /* // remove bellows command for perspective change */
    /* //transform: perspective(200px) rotateX(65deg) rotate(45deg);  */
    color: #fff;
    animation: layers1 1s linear infinite alternate;
    z-index: 1500;
  }
  .loader:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    animation: layerTr 1s linear infinite alternate;
    z-index: 1500;
  }

  .fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  
  .fade-in {
    opacity: 1;
    transition: opacity 1s ease-in;
  }

  @keyframes layers1 {
    0% { box-shadow: 0px 0px 0 0px  }
   90% , 100% { box-shadow: 20px 20px 0 -4px  }
  }
  @keyframes layerTr {
    0% { transform:  translate(0, 0) scale(1) }
    100% {  transform: translate(-25px, -25px) scale(1) }
  }
      

