.card-container{
  
  display:flex;
  flex-direction:column;
 /* gap:1rem;*/
  align-items:flex-end;
 /* padding-bottom:1500px;*/
  
  
}


.card{
  position:relative;
  top:1px;
  
  
  /*background:white;
  border: 3px solid black;
  border-radius: .25rem;
  padding:5rem;*/
 /* transform: translateX( -50px);*/
 /* opacity: 0;*/
  transition: ease 2.5s;
  width:0;
  
  
}
.card.big{
  
 /* transform: translateX(0);*/
 /* opacity:1;*/
/*  text-align:center;
  margin-left:-20px;*/
  width:100%;
}

.myShop-container{
  
  display:flex;
  flex-direction:column;
 /* gap:1rem;*/
  align-items:flex-end;
 /* padding-bottom:1500px;*/
  
  
}


.myShop{
  
  
  
  /*background:white;
  border: 3px solid black;
  border-radius: .25rem;
  padding:5rem;*/
 /* transform: translateY( 200px);*/
  opacity: 0;
  transition: ease 1.5s;
  font-size:0;
  
  
  
}

.myShop.show{
  
/*  transform: translateY(0);*/
  opacity: 1;
 /* text-align:center;
  margin-left:-20px;*/
  
  font-size:25px;
}


@media (max-width: 1100px) {
    
 .myShop.show{
     
  font-size:20px;
     
     
 }
    
    
    
    
}



