
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --font-color: black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-overflow-scrolling: auto;
}

img {
    /* Removes ~5px bottom border when using picture tags */
    vertical-align: top;
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    width: 100vw;
    max-width: 700px;
}

main.info {
    max-width: 1000px;
    padding: 2rem;
}

header {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2rem;
}

header.sticky {
    position: fixed;
    top: 0rem;
}

.pagelogoicon {
    align-self: flex-end;
}

.pagelogoicon img {
    width: 5rem;
}

.pagelogofull {
    align-self: center;
}

.pagelogofull img {
    width: 35vw;
    max-width: 200px;
}

h1 {
    font-family: "Lora", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.2rem;

    text-decoration: underline;
    text-align: center;

    margin: 2rem 0;
}

h2 {
    font-family: "Lora", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1rem;

    text-align: center;

    margin: 1em 0;
}

h3, h4 {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: italic;
    font-size: 1rem;

    text-align: center;
}

h3 {
    margin: 1.5rem 0;
}

p, li, a {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
    font-size: 1rem;

    text-align: center;
}

p {
    margin: 1rem 0;
}

a {
    color: var(--font-color);
}

ul {
    list-style: none;
}

hr {
    height: 1px;
    margin-top: 1rem;
    
    border: none;
    background: repeating-linear-gradient(90deg, black, black 6px, transparent 6px, transparent 12px);
}

nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0 10vw 5vh 10vw;
}

@media (min-width: 769px) {
    nav {
        padding: 0 3rem 3rem 3rem;
    }
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.hero picture {
    height: 30%;
    width: auto;
}

.gallery, .showcase {
    display: flex;
    flex-direction: column;
}

.gallery a {
    margin: 10vh 0;
}

.showcase picture {
    margin: 0 0 2rem 0;
}

@media (min-width: 769px) {
    .gallery {
        padding: 0 10%;
    }
}
