.container-404 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
    position: relative;
    left: 3vmin;
    text-align: center;
  }

  .cog-wheel1,
  .cog-wheel2 {
    transform: scale(0.7);
  }

  .cog1,
  .cog2 {
    width: 40vmin;
    height: 40vmin;
    border-radius: 50%;
    border: 6vmin solid #F6A458;
    position: relative;
    animation: rotateClockwise 8s linear infinite;
  }

  .cog2 {
    border: 6vmin solid #ada0fc;
    animation: rotateCounterclockwise 8s linear infinite;
    position: relative;
    left: -10.2vmin;
    bottom: 10vmin;
  }

  .top,
  .down,
  .left,
  .right,
  .left-top,
  .left-down,
  .right-top,
  .right-down {
    width: 10vmin;
    height: 10vmin;
    background-color: #F6A458;
    position: absolute;
  }

  .cog2 .top,
  .cog2 .down,
  .cog2 .left,
  .cog2 .right,
  .cog2 .left-top,
  .cog2 .left-down,
  .cog2 .right-top,
  .cog2 .right-down {
    background-color: #ada0fc;
  }

  .top {
    top: -14vmin;
    left: 9vmin;
  }

  .down {
    bottom: -14vmin;
    left: 9vmin;
  }

  .left {
    left: -14vmin;
    top: 9vmin;
  }

  .right {
    right: -14vmin;
    top: 9vmin;
  }

  .left-top {
    transform: rotateZ(-45deg);
    left: -8vmin;
    top: -8vmin;
  }

  .left-down {
    transform: rotateZ(45deg);
    left: -8vmin;
    top: 25vmin;
  }

  .right-top {
    transform: rotateZ(45deg);
    right: -8vmin;
    top: -8vmin;
  }

  .right-down {
    transform: rotateZ(-45deg);
    right: -8vmin;
    top: 25vmin;
  }

  @keyframes rotateClockwise {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  @keyframes rotateCounterclockwise {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(-360deg);
    }
  }

  h1 {
    color: #142833;
  }

  .first-four {
    position: relative;
    left: -3vmin;
    font-size: 40vmin;
    color: var(--color-surface-white);
  }

  .second-four {
    color: var(--color-surface-white);
    position: relative;
    right: 9vmin;
    z-index: -1;
    font-size: 40vmin;
  }

  .wrong-para {
    font-weight: 600;
    color: var(--color-surface-white);
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  .atag404 {
    color: var(--color-surface-white);
  }

  @media screen and (max-width: 900px) {
    .wrong-para {
      margin-top: 30px !important;
    }
  }