.loader {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0);
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    flex-direction: column;
}

.loaderText{
    margin-top: 20px;
    color: red;
}

  .pokemon {
    position: relative;
    height: 100px;
    width: 100px;
    background: linear-gradient(to bottom, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 50%);
    border-radius: 50%;
    border: 8px solid rgb(255, 255, 255);
    animation: spin 1s linear infinite, pulse 1.5s ease-in-out infinite;
  }

  .pokemon::before {
    content: '';
    position: absolute;
    height: 8px;
    width: 100px;
    background: rgb(255, 255, 255);
    top: 50%;
    transform: translateY(-50%);
  }

  .pokemon::after {
    content: '';
    position: absolute;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background: rgb(255, 0, 0);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 0 8px rgb(255, 255, 255),
                inset 0 0 0 10px rgb(0, 0, 0),
                inset 0 0 0 12px rgb(53, 53, 53);
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  @keyframes pulse {
    0%, 100% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
