


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(16, 16, 16);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, background-color 0.5s ease;
  }

  .loader {
    width:400px; height: 30px;
    animation-name: wyatt;
    animation-duration: 4s;
    font-size: 30px;
    font-family: Roboto;
    text-align: center;
  }

  @keyframes wyatt {
    from {color: #ececec;}
    to {color: rgb(16, 16, 16);}
  }

  .hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, pointer-events 0.5s ease;
  }


