body {
    padding: 0;
    margin: 0;
}

#page {
    width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Red Hat Display', sans-serif;
}

.product {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.product-header {
    background-color: lightblue;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
}

.product-name {
/*    font-family: 'Berkshire Swash', cursive;*/
    font-weight: bolder;
    font-size: 28px;
}

.product-strapline {
    font-family: 'Berkshire Swash', cursive;
    font-style: italic;
    font-size: 16px;
}

sup {
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-size: 0.7rem;
    font-weight: normal;
}

#banner-image {
    text-align: center;
    position: sticky;
    top: 0;
    left: 0;
    background-image: linear-gradient(white 85%, rgba(255, 255, 255, 0));
}

.product-name sup {
    margin-left: 4px;
}

.product-strapline sup {
    margin-left: 3px;
}

.product-info {
    display: flex;
}

.product-description {
    text-align: justify;
    margin: auto;
}

.product-image {
    margin: auto;
}

.product:nth-child(odd) .product-image {
    margin-left: 3rem;
    margin-right: 1.5rem;
}

.product:nth-child(even) .product-image {
    margin-right: 3rem;
    margin-left: 1.5rem;
}

.product:nth-child(odd) .product-description {
    padding-left: 1.5rem;
}

.product:nth-child(even) .product-description {
    padding-right: 1.5rem;
}

