body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #14161f;
    align-items: center;
  }
  
  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #14161f;
    transition: opacity 1s, visibility 1.50s;
  }
  
  .loader--effect {
    opacity: 0;
    visibility: hidden;
  }
  
  .loader::after {
    content: "";
    width: 100px;
    height: 100px;
    border: 10px solid #ffa200;
    border-top-color: #cbcebc;
    border-radius: 50%;
    animation: loading 1.75s ease infinite;
  }
  
  @keyframes loading {
    from {transform: rotate(0deg)}
    to {transform: rotate(360deg);}
  }