:root {
    --purple: #8400cb;
    --orange: #f87a00;
    --grey1: #3c3c3c;
    --grey2: #a9a9a9;
}

body > * {
    display: block;
    font-family: arial;
}

body {
    margin: 0;
    padding: 0;
}

#navbar {
    position: sticky;
    width: 100%;
    height: 5vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    place-content: stretch;
}

#navbar > a {
    text-decoration: none;
    color: black;
    text-align: center;
    line-height: 5vh;
    background-color: var(--orange);
}

#hero {
    width: 100%;
    height: 50vh;
    background-image: url('/assets/otter-small.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/* Temporary */
#page {
    background-image: url('/assets/otter-small.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#content {
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    flex-flow: column;
    padding: 10px;
}
#logo {
    height: clamp(300px, 30vh, 600px);
}
#fastcat > a {
    color: var(--orange);
    font-size: 2.5em;
}
p {
    font-size: 1.5em;
}
