.searchforapps{
    border: 0;
    outline: 0;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 15px 15px rgba(0,0,0,0.3);
padding: 15px 30px 15px 30px;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    display: flex;
    text-align: center;
  }
  .app-card{
    display: flex;
  flex-direction: column;
    border-radius: 10px;
    padding: 10px;
    min-height: 300px;
    background-color: rgba(0,0,0,0.3);
    width: 300px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.4);
    transition: 0.7s;
  }
  .app-list{
    display: flex;
    color: #fff;
    flex-wrap: wrap;
    gap: 30px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

  .app-image{
    background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
    object-fit: cover;
    /* aspect-ratio: inherit; */
    align-items: center;
    justify-content: center;
    display: flex;
    transition: 0.7s !important;
    text-align: center;
    height: 150px;
    /* transition: ease-in-out; */
    width: 270px;
    border-radius: 15px !important;
  }

  .app-image:hover{
    border-radius: 5px !important;
    /* transition: ease-in-out; */
  }


  .app-card:hover {
    background-size: 400% 400%;
  background: var(--secondary);
  animation: gradient 5s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

#launchgame{
  
  margin-top: auto;

}






  .gms-title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }