*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, sans-serif;
    
}

a {
    text-decoration: none;
}


html{
    font-size: 62.5%;
}

main{
    max-width: 1500px;
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    text-align: center;
}

main .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 200px;
    flex: 1 1 210px;
    text-align: center;
    height: 300px;
    border: 1px solid lightgray;
    background-color: lightgray;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  main .card .image {
    height: 20%;
    margin-bottom: 10px;
  }
  
  main .card .image img {
    width: 80%;
    height: auto;
    object-fit: contain;
  }
  
  main .card .caption {
    padding: 0 1em;
    text-align: center;
    font-size: 15px; /* Adjust the font size as needed */
  }
  
  
  main .card .caption p {
    margin-bottom: 0.5em;
  }
  
  main .card .caption .button {
    background-color: #b51717;
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 4px;
  }
  


main .card .caption .rate{
    display: flex;
}

main .card .caption .rate i{
    color: gold;
    margin-left: 2px;
}

main .card a{
    width: 80%;
}

.btn-danger{
color: #b51717;
}


