:root {
    --background-color: black;
    --background-hero: white;
    --text-color: white;
    --heading-color: blue;
    --background-box: blue;
    --text-box: white;
    --border-color: blue;

    --font: "Host Grotesk", sans-serif;

    --background-odd: black;
    --color-odd: white;
    --background-even: white;
    --color-even: black;

    --font-headings: "Host Grotesk", sans-serif;

    --hero-font: "Rubik Glitch", system-ui;
    --hero-color: blue;
}

* {
    padding: 0;
    margin: 0;
}

li {
    margin-left: 5em;
    margin-right: 5em;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: var(--font);
}

h1,
h2,
h3 {
    font-family: var(--font-headings);
    color: var(--heading-color);
    padding: 10px;
    font-weight: 700;
    padding-bottom: 25px;
}

p {
    padding: 10px;
    font-size: 1.2em;
    line-height: 1.2em;
}

img {
    width: 500px;
    float: right;
    padding: 25px;
    filter: grayscale(60%);
}

header {
    position: fixed;
    top: 15px;
    height: 40px;
    min-width: 1024px;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    color: gray;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.box {
    width: 800px;
    margin: 25px auto;
    background-color: var(--background-box);
    padding: 50px;
    color: var(--text-box);
}

.box a {
    color: lightgray;
    text-decoration: none;
}

.box a:hover {
    text-decoration: underline;
}

.quote {
    font-style: italic;
}

#nav {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 130;
    width: 200px;
    height: 20px;
    padding: 5px;
    margin: 10px auto;
    text-align: center;
    border: 1px dotted var(--border-color);
    background: var(--background-box);
    border-top-left-radius: 25px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 5px;
    opacity: 0.75;
    color: var(--nav-color);
    cursor: pointer;
}

#nav:hover {
    opacity: 1;
}

#nav a {
    color: var(--nav-color);
    text-decoration: none;
}

#teaser {
    width: 1024px;
    margin: 0px auto;
    border: 0px;
}

#hero {
    background-color: var(--background-hero);
    text-align: center;
    min-width: 1024px;
    position: relative;
}

#hero-title {
    position: absolute;
    bottom: 10px;
    right: 20px;
    text-transform: uppercase;
    font-size: 3em;
    color: var(--hero-color);
    z-index: 130;
    font-family: var(--hero-font);
    text-align: right;
    padding: 30px;
}

.odd,
.even {
    padding: 25px;
    min-width: 1024px;
}

.odd {
    background-color: var(--background-odd);
    color: var(--color-odd);
}

.even {
    background-color: var(--background-even);
    color: var(--color-even);
}

.photo-container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 10px auto;
    gap: 0;
    justify-content: center;
}

.photo-container img {
    float: none;
    margin: 0px;
    padding: 5px;
}

.credits {
    font-size: small;
}

footer {
    text-align: right;
}

.show-img {
    float: none;
    font-size: small;
    display: block;
    margin: 0 auto;
}
