body {
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Crimson Pro", serif;
    user-select: none;

    & > header {
        & > a {
            color: #fff;
            text-shadow: 0 0 5px #000;
            text-decoration: none;

            & > h1 {
                margin: 0;
                padding: 10px 0;

                text-align: center;
                font-size: 14vw;

                background-image: url(/img/baner.webp);
                background-repeat: no-repeat;
                background-size: cover;
            }
            
        }
    }
}

hr {
    border-style: dashed;
    border-color: #ddd;
    clear: both;
}

nav {
    padding: 0 10px;
}

nav > ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    font-size: 130%;

    & > li {
        text-align: center;
        margin: 0;
        width: 33%;

        & > a {
            text-decoration: none;
            color: #222;
            transition: 200ms;

            &:hover {
                color: #444;
                transition: 200ms;
            }
        }
    }
}

.item-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

figure {
    margin: 5px;
    padding: 5px;
    width: min-content;
    background-color: #ddd;
    border-radius: 5px;

    & > a > img {
        max-width: 90vw !important;
        height: auto !important;
        border-radius: 5px;
    }

    & > figcaption > p {
        text-align: center;
        margin: 5px 0;
        font-size: 14pt;
        font-weight: bold;
    }
}

#product-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    img {
        max-width: calc(50% - 10px);
        padding: 5px;
        height: auto;
        border-radius: 10px;

        &:hover {
            cursor: pointer;
        }
    }
}

#contact {
    clear: left;
}

article {
    font-size: 120%;
    padding: 0 10px;
}

a {
    color: inherit;
}

.greenish {
    color: #005200;
}

.shop-link {
    border: 2px dashed #005200;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    display: block;
}

main {
    user-select: text;

    & > section > header {
        text-align: center;
    }
}

footer {
    padding: 0 10px;
    user-select: text;
}

@media only screen and (min-width: 768px) {
    #product-gallery {
        max-width: 50% !important;
        float: left !important;
    }

    #product-info {
        max-width: 50% !important;
        float: right !important;
    }

    body > header > h1 {
        padding: 60px !important;
    }

    .shop-link {
        display: inline-block !important;
    }

    header > a > h1 {
        font-size: 44pt !important;
    }
}