@media (max-width: 84em) {
  html {
  }
}
@media (max-width: 75em) {
  html {
    /* 9px / 16px  */
    font-size: 56.25%;
  }
}
@media (max-width: 59em) {
  html {
    font-size: 50%;
  }

  .article-sec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    grid-gap: 2rem;
  }

  .black-box {
    flex-direction: column;
    overflow: hidden;
  }
  .white-box {
    flex-direction: column;
    overflow: hidden;
  }
  .white-img {
    display: flex;
    justify-content: center;
  }
  .white-side-img {
    width: 40%;
  }
  .black-content {
    margin-bottom: 2rem;
  }
  /* Mobile nav */
  .btn-mobile-nav {
    display: block;
    z-index: 9999;
  }
  /* .logo {
    display: none;
  } */
  .nav {
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.5s ease-in;

    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .top-bar-icon {
    display: none;
  }
  .nav-open .nav {
    opacity: 1;

    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
  }
  .main-nav-list {
    flex-direction: column;
    gap: 2.8rem;
  }
  .nav-open .icon-mobile-nav[name="close-outline"] {
    display: block;
  }
  .nav-open .icon-mobile-nav[name="menu"] {
    display: none;
  }
  .content-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 44em) {
  html {
    font-size: 45%;
  }
  .game-container {
    flex-direction: column;
  }
  .categories-list {
    display: none;
  }
}
@media (max-width: 34em) {
  html {
    font-size: 40%;
  }
  .article-sec {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    grid-gap: 2rem;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .text-primary {
    width: 80%;
  }
  .heading-primary {
    width: 80%;
  }
  .header {
    padding: 2rem;
    height: 50vh;
  }
}
