.product-search-page{
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.product-search-results{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.product-search-result{
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.71);
    border-radius: 5px;
    overflow: clip;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 380px;
    text-decoration: none;
    color: black;
}

.product-search-result-image{
    height: 300px;
    min-height: 300px;
    width: 300px;
    flex: 1;
}

.product-search-result-name{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 80px;
    height: 80px;
    padding: 8px;
    margin: 0;
    flex: 1;
    text-align: center;
    font-family: "Rouge Script", serif;
    font-size: 28px;
    color: darkslategray;
    font-weight: normal;
    /*background-color: rgba(255, 255, 255, .85);*/
}