﻿.hero {
    height: 450px;
    position: relative;
    z-index: 1;
}

@media(min-height:800px) {
    .hero {
        height: 450px;        
    }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: .25s opacity ease-in-out;
    opacity: 1;
    z-index: -1;
}
#top h1 {
    font-size: 4rem;
    line-height: 100%;
    text-transform: uppercase;
}

a:hover {
    text-decoration: none;
    color: #fffbfa;
}