* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --globalpadding: 10px;
    --small: 12px;
    --mid: 20px;
    --large: 30px;
    --verylarge: 40px;
}

@font-face {
    font-family: maxville;
    src: url(Maxeville-Regular.woff2);
}

/* ### - A - ### */
.archive {
    background-color: black;
    color: white;
}
.archive .button {
    color: white;
    border-color: white;
}
.archive .section-content {
    display: none;
}
article {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    overflow-y: auto;
    background-color: white;
    transition: 0.2s;
}
#show .article-content, #product .article-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.article-content {
    background-color: white;
}
.article-head {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: var(--globalpadding);
    background-color: white;
}
.article-head p {
    grid-column: 1/-1;
    font-size: var(--verylarge);
    margin-bottom: 0!important;
}
.article-head p:first-of-type {
    font-size: var(--mid);
}
.article-head p:last-of-type {
    font-size: var(--mid);
}
.article-head span {
    grid-column: 1/-1;
    width: 20px;
    margin-bottom: var(--globalpadding);
    cursor: pointer;
}
.article-cover {
    width: 100%;
    grid-column: 1/-1;
}
.article-text {
    padding: var(--globalpadding);
}
.article-text a {
    color: blue;
}
.article-paypal {
    padding: var(--globalpadding);
}
.article-paypal p {
    font-size: var(--large);
}
.article-paypal a {
    color: black;
}
/* ### - B - ### */
body {
    font-family: maxville, sans-serif;    
    font-size: var(--mid);
}
.button {
    cursor: pointer;
    text-align: center;
    align-self: center;
    justify-self: center;
    border-bottom: 1px solid black;
}
#default .button {
    display: none;
}
.bu {
    font-size: var(--small);
    padding: var(--globalpadding);
    align-self: center;
    background-color: white;
    margin-bottom: 0!important;
}
/* ### - C - ### */
/* ### - D - ### */
.default-content {
    padding: var(--globalpadding);
}
/* ### - E - ### */
/* ### - F - ### */
/* ### - G - ### */
/* ### - H - ### */
/* ### - I - ### */
/* ### - J - ### */
/* ### - K - ### */
/* ### - L - ### */
.logo {
}
/* ### - M - ### */
main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 85% 15%;
    height: 100vh;
    transition: 0.2s;
    position: relative;
    top: 0;
}
#archive main {
    grid-template-rows: 15% 85%;
}
/* ### - N - ### */
nav {
    background-color: gray;
    width: 100%;
    height: 50px;
    position: fixed;
    top: -50px;
    right: 0;
    transition: 0.2s;
    overflow: hidden;
    z-index: 9;
    padding: 10px;
    display: flex;
    align-items: center;
}
nav a {
    color: black;
    text-decoration: none;
    font-size: var(--small);
}
nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 85%;
}
nav li {
    list-style-type: none;
    font-size: var(--small);
}
nav a:hover {
    text-decoration: underline;
}
.nav-btn {
    height: 25px;
    width: 25px;
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
    transition: 0.2s;
    font-size: var(--small);
}
.nav-btn img {
    width: 100%;
}
.news .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.news .section-content p {
    grid-column: 1/3;
}
.news .section-content figure {
    margin-top: var(--globalpadding);
    grid-column: 1/3;
}
/* ### - O - ### */
/* ### - P - ### */
p {    
    margin-bottom: var(--mid);
    hyphens: auto;
}
/* ### - Q - ### */
/* ### - R - ### */
/* ### - S - ### */
section {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px auto;
    overflow-y: scroll;
    padding-top: 5px;
}
.section-head {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: var(--globalpadding);
}
.section-content {
    padding: var(--globalpadding);
    width: 100%;
}
.section-content img {
    max-width: 100%;
    max-height: 80vh;
}
.show {
    border-top: 1px solid white;
    padding: var(--globalpadding) 0;
    display: grid;
    grid-template-columns: 1fr 8fr;
    grid-row-gap: 5px;
}
.show .number {
    grid-column: 1/2;
} 
.show .artist {
    grid-column: 2/-1;
}
.show .title {
    font-style: italic;
    cursor: pointer;
    grid-column: 2/-1;
}
.show .title:hover {
    text-decoration: underline;
}
.show .year {
    grid-column: 2/-1;
}
.show:last-of-type {
    border-bottom: 1px solid white;
}
.story-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
}
.story-slide {
    display: none;    
    width: 100%;
    grid-column: 1/2;
    grid-row-start: 1;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
    background-color: darkgray;
}
.story-slide.active {
    display: grid;
}
.story-slide img {    
    max-width: 100%;
    max-height: 80vh;
    justify-self: center;
    align-self: center;
}
.story-nav {
    grid-column: 1/2;
    grid-row-start: 1;
    position: relative;
    top: 0px;
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 10px;
}
.story-nav-line {
    height: 3px;
    border-radius: 5px;
    background-color: white;
    flex-grow: 1;
    opacity: 0.5;
}
.story-nav-line.active {
    opacity: 1;
}
.prev, .next {
    grid-column: 1/2;
    grid-row-start: 1;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: var(--verylarge);
    user-select: none;
    z-index: 10;
    border-radius: 50%;
    height:100%;
    width: 50%;
    margin: 5px;
}
.prev img, .next img {
    width: 60%;
}
.prev {
    justify-self: start;
    align-self: center;
}
.next {
    right: 0;
    justify-self: end;
    align-self: center;
    text-align: right;
}
/* ### - T - ### */
/* ### - U - ### */
/* ### - V - ### */
/* ### - W - ### */
/* ### - X - ### */
/* ### - Y - ### */
/* ### - Z - ### */

@media (min-width: 750px) {
    :root {
        --globalpadding: 20px;
        --small: 18px;
        --mid: 36px;
        --large: 50px;
        --verylarge: 65px;
    }
    section {
        grid-template-rows: 120px auto;
    }
}   

@media (min-width: 1000px) {
    :root {
        --globalpadding: 20px;
        --small: 20px;
        --mid: 40px;
        --large: 60px;
        --verylarge: 85px;
    }
    section {
        grid-template-rows: 150px auto;
    }
    .news .section-content p {
        grid-column: 1/2;
    }
    .news .section-content figure {
        grid-column: 2/3;
        margin-top: 0;
    }
}