:root {
    --color-bg: #000;
    --color-bg-header: #000;
    --color-bg-footer: #000;
    --color-bg-main: #4AC;
    --color-pri: #fff;
    --color-sec: #fff;
    --color-tir: #7ea1ff;
    --color-link: #fff555;
    --color-section: #003;
    --color-bg-code: #363636;
}

body {
    font-family: "Muli,avenir,helvetica neue,helvetica,ubuntu,roboto";
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-pri);
    background-color: var(--color-bg);
    padding: 0;
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: var(--color-link);
    background-color: var(--color-bg-header);
    border-bottom: solid 2px #fff;
    padding: 0 1vw;
    min-height: 8rem;
}
header h1 {
    flex-grow: 1;
    margin-bottom: 0;
}
header p {
    margin: 0 0 0 1.2rem;
}
header .icon-box {
    display: flex;
    justify-content: right;
    gap: .4rem;
}
header .icon-box a {
    display: block;
    height: 1.5rem;
    width: 1.5rem;
}

nav {
    flex: 7;
    margin: 1rem 0.5rem 1rem 0;
}
nav ul {
    display: flex;
    justify-content: end;
    margin-left: auto;
    list-style: none;
    font-size: 1rem;
    text-align: right;
}
nav ul li a {
    flex: 1;
    display: block;
    padding: 3px 6px;
    color: var(--color-link);
    text-decoration: none;
    font-weight: bold;
    margin: 0 .1rem;
}
nav ul li a:hover {
    background: var(--color-link);
    color: #485e0f;
    border-radius: 3px;
    padding: 3px 6px;
    text-decoration: none;
}
nav ul li .current {
    background-color: var(--color-link);
    border-radius: 3px;
    color:#000 !important;
}

main {
    display: flex;
    justify-content: center;
    padding-bottom: 4rem;
    background-image: url('../img/zigzag3.svg');
    background-repeat: repeat;
    background-color: var(--color-section);
}

#content section {
    background-color: var(--color-section);
    box-shadow: inset 0px 0px .3rem .3rem #000;
    border-radius: 0 0 1.6rem 1.6rem;
    padding: .5rem 2rem 4rem 3rem;
    margin-bottom: 9rem;
    min-width: 54vw;
    min-height: 55vh;
}
#content section h1 {
    font-size: 3rem;
    margin-bottom: 0;
    text-align: center;
}
#content section nav {
    padding-top: 4rem;
}
#content section nav ul {
    justify-content: center;
    gap: 1rem;
    padding-left: 0;
}
#content section .heading {
    max-width: min(1200px, 95vw);
    margin: auto;
    padding-inline: 2rem;
}
#content section .container {
    max-width: min(1024px, 95vw);
    margin: auto;
}
#content section .preamble {
    padding-bottom: 3rem;
}

footer {
    min-height: 2rem;
    background: var(--color-bg-footer);
    color: #fefefe;
    padding: 0 1rem;
}
footer h1 {
    margin-top: 0;
}
footer p {
    margin-top: 0;
    padding-top: 0.5rem;
}
footer .container div {
    width: 33.3%
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: .1rem 1rem;
    max-height: 65%;
}
footer .icon-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 1rem;
}
footer .icon-box a {
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    width: 2rem;
    height: 2rem;
}
footer .bottom-bar {
    text-align: center;
    font-size: small;
    flex-grow: 1;
}
footer .left p {
    max-width: 60%;
    margin: auto;
}

.breadcrumbs ol {
    display: flex;
    justify-content: left;
    list-style-type: none;
    padding: 0;
}

.breadcrumbs ol li+li::before {
    content: ">";
    padding-left: 0.6rem;
}

.shop-items {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

article.shop-item {
    display: flex;
    flex-direction: column;
    min-width: 8rem;
    max-width: 200px;
    background-color: #dd4;
    min-width: 20rem;
    overflow: hidden;
}
article.shop-item h1 {
    font-size: x-large;
}
article.shop-item button {
    width: 50%;
    height: 2rem;
    background-color:#dd4;
    color: #000;
    margin-top: 1rem;
}
article.shop-item img {
    transition: transform .5s ease;
}
article.shop-item:hover img {
    transform: scale(1.2);
}
article.shop-item .price {
    font-size: 1rem;
    font-weight: bold;
}
article.shop-item .bottom-bar {
    background-color: #000;
    padding-block: 2rem;
    text-align: center;
    font-size: smaller;
}