.card{
    width: 200px;
    height: 200px;
    padding-top: 7px;
    cursor:pointer;
    display:flex;
    flex-direction: column;
    align-items: center;
  }
  .card_img{
    width: 200px;
    height: 150px;
  }
  img{
    height:100%;
  }
  .card_text{
    width: 100%;
    height: 50%;
    text-align:center;
  }
  .card_title{
    font-size: 16px;
    text-align:center;
  
  }
  .card_contents{
    font-size: 11px;
    text-align:center;
  }
  
  .container {
    height:100%;
      display: grid;	
  }
  
  .row_container{
    display:flex;
    row-gap: 20px;
    column-gap: 20px;
    flex-wrap: wrap;
    height: 100%;
  }
  