:root {
    --white: #ffffff;
    --black: #000000;
    --light-grey: #e8ede8;
    --dark-grey: #7a7d7b;
    --highlight: #756948;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 28px;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: 1px;
    scroll-behavior: smooth;
    color: var(--black);
}

a, a:visited {
    text-decoration: none;
    cursor: pointer;
    color: var(--black);
}
nav ul {
    display: flex;
    flex-flow: column nowrap;
    position: absolute;
    top: 20px;
    left: 20px;
    padding-right: 20px;
    list-style: none;
}

h1 {
    padding-bottom: 10px;
    font-size: inherit;
    font-weight: normal;
    text-transform: uppercase;
}
#logo {
    text-transform: lowercase;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}
figure {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
img {
    width: 60%;
    height: auto;
    object-fit: contain;
    image-rendering: high-quality;
}
figcaption {
    max-width: 400px;
    font-size: 16px;
    letter-spacing: .5px;
}

footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.base #year {
    display: none;
}

/* ABOUT */
.about {
    color: var(--dark-grey);
}



@media screen and (max-width: 800px) {
    body {
        font-size: 20px;
        letter-spacing: .5px;
    }
    figcaption {
        max-width: 250px;
        font-size: 10px;
        letter-spacing: .4px;
}
}






