:root {
    --scrollPos: 0;
    --offset: 0;
    --colour-one: #0b1728;
    --colour-two: #214478;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body {
    background-color: #87aade;
    background-color: #0b1728;
    color: #c2c5c6;
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
}

h1 {
    color: #0b1728;
    text-align: center;
    font-size: 3em;
    margin-top: 1em;
}

p {
    max-width: 600px;
    margin: 2em auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}

/* Site Header Styles */
.site-name {
    margin: 0;
    font-size: 30px;
    padding: 0em 1em;
}

.site-name a {
    text-decoration: none ;
    color: inherit;
}

.top-bar {
    background-color: #87aade;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
}

#nav-bar {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #0b1728;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    text-decoration: underline;
}

/*  wrapping landscape */
.landscape {
    background: #87aade;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* make each layer fill parent */
.landscape__layer {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;

    /* parallax */
    transform: translateY(calc(var(--scrollPos, 0) * var(--offset, 0)));

    @media (prefers-reduced-motion: reduce) {
        transform: translateY(0);
    }
}


/*  svg wrapper */
.landscape__image {
    /*  position at bottom of element in center */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    /*  set sizes that work for my image */
    max-height: 100%;
    max-width: 300%;
    min-width: 100%;
    width: 1920;

    max-width: 300%;
    min-width: 100%;
    width: 1920;

    /*  use flexbox to center SVG elements */
    display: flex;
    flex-direction: column;
}

/*  basic styling for SVG element */
.landscape__image svg {
    display: block;
    height: auto;
    max-width: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-heading {
    text-align: center;
}

.svg-divider {
    display: flex;
    align-items: bottom;
}

.colour-one {
    fill: var(--colour-one);
}

.colour-two {
    fill: var(--colour-two);
}

#footer {
    display: flex;
    justify-content: center;
    gap: 30em;
    padding: 2em;
    size: 
}
.footer-link {
    list-style-type: none;
}
