
.hero {
    background-image: url(../assets/images/game/project8.png);
    background-position: bottom;
}
.project-logo{
    width: 300px;
  }
.hero::after {
    content: "Kitchen Quest"; 
}


.wrap-items  {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
  }

  .wrap-items  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
.wrap{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

  }
.wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the tile without distortion */
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
@media (max-width: 599px) {


    .animations{
        flex-direction: column;
    }
    .wrap{

        grid-template-columns: repeat(2, 1fr);
  
    
      }
  }
  
  @media screen and (min-width: 600px) and (max-width: 768px) {
  
    iframe{
        width:100%;
        height: 500px
    }
    .animations{
        flex-direction: column;
    }

    .wrap{

        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    
      }
  }
  @media screen and (min-width: 769px) and (max-width:1024px){
    iframe{
        width:100%;
        height: 800px
    }

    .wrap{

        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    
      }
 }