body {
    margin: 0px;
    padding: 0px;
    height: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    max-width: 320px;
    max-height: 320px;
    margin: 1vw;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: black;
}

.card img {
    height: 67%;
    width: 67%;
    object-fit: contain;
    margin-top: 5px;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
  
/* Add some padding inside the card container */
.container {
    padding: 0px 16px;
}
