/* CSS Document */

@font-face {
    font-family: 'libreFranklin600';
    src: url('../fonts/libre-franklin-v5-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/libre-franklin-v5-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/libre-franklin-v5-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/libre-franklin-v5-latin-regular.woff') format('woff'),
        /* Pretty Modern Browsers */
        url('../fonts/libre-franklin-v5-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/libre-franklin-v5-latin-regular.svg#svgFontName') format('svg');
    /* Legacy iOS */
}

@font-face {
    font-family: 'oswald500';
    src: url('../fonts/oswald-v35-latin-500.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/oswald-v35-latin-500.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/oswald-v35-latin-500.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/oswald-v35-latin-500.woff') format('woff'),
        /* Pretty Modern Browsers */
        url('../fonts/oswald-v35-latin-500.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/oswald-v35-latin-500.svg#svgFontName') format('svg');
    /* Legacy iOS */
}

/* OPTIONAL: makes the entire site scale dwon to size of old flash version */
/* html { zoom: .8;  } */

body {
    background-color: #000000;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: oswald500;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: .02em;
    margin: 0;
}

h6 {
    font-size: 18px;
    letter-spacing: .02em;
    margin: 0;
}

p {
    font-family: libreFranklin600;
    color: #666666;
    font-size: 13px;
    margin-bottom: 5px;
}

ul {
    list-style-type: none;
}

.main-container {
    width: 930px;
    margin: 50px auto;
    background: no-repeat url("../assets/ui/bg-image-w-logo-02.svg") #000000;
    background-position: 50% 25px;
    background-size: 930px;
}

.navbar-ul {
    padding: 43px 0 0 365px;
    width: 520px;
    display: grid;
    grid-template-columns: 58px 85px 80px 120px 20px;
    grid-gap: 0px;
    justify-items: center;
}

li.nav-item {
    font-family: oswald500;
    text-transform: uppercase;
    font-size: 14px;

}

a:link,
a:visited,
a:hover,
a:active {
    color: gray;
    text-decoration: none;
}



/* nav links */

.nav-item a:link {
    color: gray;
}

.nav-item.active,
.nav-item.active a {
    color: white;
}

/* visited link */
.nav-item a:visited {
    color: gray;
}

/* mouse over link */
.nav-item a:hover {
    color: lightgray;
}

/* selected link */
.nav-item a:active {
    color: white;
}

a.textLink {
    text-decoration: underline;
}

