/* Styling for the home page. */
body.home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                      url("../images/HomeBG.JPG");
    background-size: cover;
    background-position: 0% 50%;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: 'Lato', 'Arial';
}

/* Alternative shading method. */
/* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
} */

main.home {
    display: flex;
    flex-flow: column;
    height: 100vh;
}

nav.home {
    background-color: transparent;
    background-image: linear-gradient(to right, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.0) 30%);
}

h1.home {
    line-height: 86px;
    font-weight: bold;
    padding-top: calc(50vh - 55px);
    padding-bottom: 10px;
    background-color: transparent;
}

h2.home, h3.home {
    line-height: 1;
    font-weight: bold;
    padding-left: 0%;
} 

a.home {
    text-decoration: none;
    font-style: normal;
}

a:hover.home {
    text-decoration: underline;
    color: rgb(0, 152, 194);
}