.products {
    display: flex;
    justify-content: center;
}

.product {
    width: 20em;
    border-style: solid;
    border-radius: 0.15em;
    padding: 0.5em;
    background: #ffffff;
    margin: 1em;
}

.product:hover {
    background: #f8f9fa;
}

.prod-title {
    font-size: 1.5em;
    margin: 0em;
}