#cover-section {
  img {
    width: 100%;
    max-width: 80dvw;
    max-height: 50dvh;
    height: auto;
  }

  h1{
    position: absolute;
    font-size: 6rem;
    top: 25vh;
    left: 15vw;
    color: #8000ff;
  }
}

#featured-section {
  margin-top: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  h2 {
    font-size: 4rem;
    margin: 1rem;
    text-align: center;
  }

  hr {
    width: 90%;
    margin: 0 auto;
    border: 1px solid light-dark(var(--light-main), var(--dark-main));
  }

  .game-container {
    width: 90%;
    align-self: center;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;

    .game-card{
      position: relative;
      width: 100%;
      aspect-ratio: 1/1;
      overflow: hidden;

      img{
        position: absolute;
        width: 100%;
        aspect-ratio: 1/1;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: center;
      }

      a{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        background-color: rgba(255, 253, 253, 0.633);

        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 4%;
        color: light-dark(var(--light-text), var(--dark-text));
        text-decoration: none;

        p{
          font-size: 1.2rem;
        transition: color .5s ease, font-size .5s ease;
        }

        &:hover{
          p{
            color: light-dark(var(--light-secondary), var(--dark-secondary));
            font-size: 1.8rem;
          }
        }

        h3{
          font-size: 3rem;
          font-family:bytebounce ;
        }
      }
    }
  }
}
