﻿body {
    margin: 0;
    /* background-image: linear-gradient(top, #dfdfdf, #eeeeee);
	background-image: -moz-linear-gradient(top, #dfdfdf, #eeeeee);
	background-image: -webkit-linear-gradient(top, #dfdfdf, #eeeeee); */
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.headerContainer {
    width: 90%;
    margin: 0 auto;
}

.icon {
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    float: left;
    text-align: center;
    border-width: 0.09em;
    border-color: black;
    border-style: solid;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Source Sans Pro', sans-serif;
}

header ::after {
    content: "";
    display: table;
    clear: both;
}

nav {
    float: right;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav li {
    display: inline-block;
    margin-left: 40px;
    padding-top: 1.65em;
    position: relative;
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
}

nav a:hover {
    color: black;
}

nav a::before {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background: black;
    position: absolute;
    top: 0;
    width: 0%;
    transition: all ease-in-out 250ms;
}

nav a:hover::before {
    width: 100%;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
    margin: 0;
}

.gallery {
    /* padding-left: 100px; */
    /* padding-right: 100px; */
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 25px;
}

.gallery img {
    transition: 1s;
    padding: 10px;
}

.gallery img:hover {
    filter: grayscale(100%);
    transform: scale(1.1);
}

.links{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: xxx-large;
}

.links:hover {
    color: black;
    transition: all ease-in-out 250ms;
}