@charset "UTF-8";



@import url("https://use.typekit.net/fkt8ojs.css");


html {
    color: white;
    background-image: url(../images/bg_texture.jpg);
}

a:link {
    color: rgb(101, 216, 251);
   }
a:visited {
    color: rgb(191, 51, 161);
   }
a:hover {
    color: rgb(253, 112, 47);
    background-color: rgba(255, 255, 255, 0.5);
   }
a:active {
    color: rgb(236, 253, 2);
   }

nav a:link {
    color: rgb(255, 255, 255);
    text-decoration: none;
   }
nav a:visited {
    color: rgb(255, 255, 255);
   }
nav a:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(216, 4, 181);
    font-weight: bold;
   }
nav a:active {
    color: rgb(2, 207, 253);
   }


h1, h2 {
    background-image: linear-gradient( #FFFBAA, #b39d5d);
    -webkit-background-clip: text;
    background-clip:text;
    color: transparent;
}

body {
    font-family: sans-serif;
    margin: 0;
    min-height: 100vh;
}

figure {
    margin: 0;
}
figcaption {
 margin-bottom: 1em;
}

h1 {
    font-family: din-2014, sans-serif;
    font-weight: 800;
    font-style: normal;
    margin-top: 1em;
    font-size: 2.5em;
    text-transform: uppercase;
}

header {
    background-color: #3c1b04;
    border-bottom-style: solid;
    border-bottom-width: .5em;
    border-bottom-color: #FFFBAA;

}

#logo {
    position: absolute;
    top: 1em;
    left: 0em;
}

nav {
    display: flex;
    justify-content: right;
    margin: 0;
}

nav a {
    display: block;
    margin-right: 2em;
    margin-top: 2em;
    margin-bottom: .25em;
    padding-top: 1em;
    padding-left: 2em;
    background-image:url(../images/swirl-bullet.png);
    background-repeat:no-repeat;
    background-position: left bottom;
    line-height: .75;
}

main {
    margin-left: 8.5em;
    max-width: 1068px;
}



footer {
    background-color: #3c1b04;
    border-top-style: solid;
    border-top-width: .5em;
    border-top-color: #FFFBAA;
    position: relative;
    bottom: 0;

    position: sticky;
    top: 100%;
}

footer p {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding-bottom: 2em;
}








