body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 70px;
}

a {
    text-decoration: none;
}

#filter-list {
    margin: 2rem;
    height: 2rem;
    border: 1px solid #FFAFCC;
    border-radius: 4px;
    background-color: #FFE5EC;
}

#jacket-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.product-container {
    border: 1px solid #FFE5EC;
    border-radius: .5rem;
    height: 100%;
    padding: 1rem;
}

.product-container img {
    min-width: 100px;
    min-height: 100px;
    max-width: 250px;
    max-height: 250px;
}

.product-container:hover {
    box-shadow: 10px 5px 5px #FFAFCC;
}
