.home{
    width: 100%;
    height: 100vh;
    background-image: url('../img/williamson-tunnels-photos/001.jpeg');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}
.home::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
}
.home-head{
    padding-top: 35vh;
}
.home-header{
color: white;
text-align: center;
font-weight: bold;
font-size: 4.5rem;
letter-spacing: 2px;
padding: .25em;
}
.home-subheader{
    color: white;
    text-transform: uppercase;
    font-weight: lighter;
    text-align: center;
    font-size: 1.75rem;
    letter-spacing: 2px;
}
.home-buttons{
    width: fit-content;
    margin: 1.5em auto;
}
.home-button{
    padding: .76em 1em;
    font-size: 1.5rem;
    color: white;
    margin: .5em;
    background-color: black;
    border: 1px solid white;
    border-radius: 5px;
    letter-spacing: 1px;
}
.home-button:hover{
    color: black;
    background-color: white;
    transition: 0.3s;
    transition-property: background-color;
}
.quote{
    width: 90%;
    margin: 5em auto;
    color: white;
    font-size: 1.8em;
    font-weight: lighter;
    font-style: italic;
}
.home-about{
    width: 100% !important;
    font-size: 2em;
    line-height: 1.75;
    background-color: black !important;
}
.home-about p{
    width: 80%;
    color: white;
    margin: 0em auto !important;
    padding-top: 2em !important;
    padding-bottom: 2em;
    font-weight: lighter;
    background-color: black;
}
@media (min-width: 900px){
    .home-header{
        font-size: 7rem;
        letter-spacing: 3px;
        padding: .1em;
        }
    .home-subheader{
        font-size: 3rem;
        }
    .home-button{
        padding: 1em 1.6em;
        margin: .75em;
        font-size: 1.5rem;
        border: 1px solid white;
        border-radius: 5px;
        letter-spacing: 2px;
    }
    .quote{
        width: 50%;
        margin: 3em auto;
    }
    .home-about{
        width: 100% !important;
        font-size: 2em;
        line-height: 1.75;
        background-color: black;
    }
    .home-about p{
        width: 60% !important;
        padding: 6em auto;
    }
}