* {
    box-sizing: border-box;
    padding: 0;
    font-family: Optima, sans-serif;
}
body {
    color: #2a1717;
    font-family: Optima, sans-serif;
    background-color: #fff;
    margin: 0;
    background-image: linear-gradient(to bottom, #2a1717, #996);
}
.container {
    text-align: center;
    width: 100%;
    background-image: linear-gradient(to bottom, #2a1717, #996, #ddac3f);
}
.container span {
    color: #fff;
    text-transform: uppercase;
    display: block;
}
.text1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: #996;
    position: relative;
    animation: text 3s 1;
}
.text2 {
    font-size: 25px;
    color: #ddac3f;
}
@keyframes text {
    0% {
    color: #996;
    margin-bottom: -40px;
}
30% {
    letter-spacing: 25px;
    margin-bottom: -40px;
}
85% {
    letter-spacing: 8px;
    margin-bottom: -40px;
}
}#navbar {
    grid-row: 1/3;
    grid-column: 2/-2;
}
header {
    background-color: #2a1717;
    text-align: center;
    grid-row: 1/2;
    grid-column: 2/-2;
}
header #logo {
    background-color: #2a1717;
}
header h1 {
    background-image: linear-gradient(to bottom, #2a1717, #996, #ddac3f);
    font-size: 5rem;
    color: #fff;
    text-align: center;
}
#wrapper {
    background-color: #2a1717;
    width: 80%;
    margin: 0 auto;
    grid-auto-rows: minmax(0, auto);
    grid-template-columns: repeat(12, minmax(0, 1fr));
}
#heroImage {
    background-image: url(images/freeeburd.png);
    height: 300px;
    background-repeat: no-repeat;
    background-position: 80% 50%;
    background-size: cover;
}
nav {
    display: block;
    float: right;
    position: sticky;
    top: 0;
    background-color: #996;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #996;
}
nav a {
    text-decoration: none;
    color: #fff;
    padding: 1rem 0;
    display: block;
    text-align: center;
    transition: background-color .1s;
    transition-timing-function: ease-in-out;
}
nav ul li {
    display: inline-block;
}
nav ul li a {
    text-decoration: none;
    color: #fff;
    background-color: #996;
    padding: 20px;
    display: block;
}
nav a:hover {
    background-color: #ddac3f;
    color: #fff;
}
.clear {
    clear: both;
}
footer, header, main {
    padding: 25px;
    position: relative;
}
h2 {
    color: #fff;
    font-size: 1.5em;
    text-decoration: underline;
    text-decoration-color: #ddac3f;
}
footer {
    font-size: .7em;
    font-style: italic;
    text-align: right;
    color: #fff;
}
p {
    color: #fff;
}
div.gallery {
    border: 1px solid #ccc;
}
div.gallery:hover {
    border: 1px solid #777;
}
div.gallery img {
    width: 100%;
    height: auto;
}
div.desc {
    padding: 15px;
    text-align: center;
}
* {
    box-sizing: border-box;
}
.responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%}
@media only screen and (max-width:992px) #wrapper {
    #wrapper {
    grid-template-columns: repeat(12, minmax(0, 75fr));
}
@media only screen and (max-width:700px) {
    .responsive {
    width: 49.99999%;
    margin: 6px 0;
}
}@media only screen and (max-width:500px) {
    .responsive {
    width: 100%}
}.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
}