#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colors-gray13);
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1000;
  }
  
  .hello-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hello {
    font-size: 3rem;
    font-weight: bold;
    color: var(--colors-gray1);
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
  }
  
  @media (max-width: 768px) {
    .hello {
      font-size: 3rem;
    }
  }