main {
    max-width: 100vw;    
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.5em;
    display: block;
    margin: 10vh 5vw;
}

article > h1 {
    text-align: center;
    color: var(--dark_primary);
    margin: 15vh 0;
    font-size: 2.5em;
    line-height: 1em;
    
}

.shop-container {
    display: grid;
    min-height: 100vh;
    padding: 5vh;
    grid-template-columns: repeat(auto-fill, minmax(max(15rem, 20%), 100fr));
    gap: 5vh;
    background-color: #ffdfdf6c;;
}

.shop-container a {
    text-decoration: none;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.405);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.405);
    height: fit-content;
    background-color: white;
}

.shop-container a:hover {
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.405);
}

.shop-item {
    display: flex;
    flex-direction: column;
    height: clamp(400px, 55vh, 55vh);
    row-gap: 10px;
    padding: 2vh;
    width: 100%;
}

.shop-item {
    text-align: center;
}

.shop-item > *{
    margin: 5px 0;
}

.shop-item > h3 {
    color: var(--dark_primary);
}

.image-container {
    margin: 0;
    padding: 0;
    width: 100%;
    flex-grow: 1;
    /* height: 200%; */
    background-color: var(--text);
    overflow: hidden;

}

.image-container > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-container > img:hover {
    transform: scale(1.1);
    transition: all ease-in-out .25s;
    border: none;
}

.price-info {
    width: 100%;
    margin: 10vh 0;
}

.price-info > * {
    margin: 0 auto;
    width: 100%;
}

table {
  border-spacing: 0; /* Removes the cell spacing via CSS */
}

.price-info table * {
    padding: 1.5vh 0;
}

.price-info tr > *{
    border-bottom: 1px solid #aaa;
}

.price-info th{
    color: var(--dark_primary);
    text-align: start;
    font-weight: bold;
}

h2 {
    color: var(--dark_primary);
    text-align: center;
    font-size: 2rem;
}

@media screen and (max-width: 550px)  {
    .shop-container {
        padding: 0;
    }
}
