@import url('https://fonts.googleapis.com/css2?family=Abel&family=Rancho&display=swap');
body {
    font-family: "Abel", sans-serif;
    margin: 0;
}


/* heading rules*/
h1 {
    font-family: "Rancho", cursive;
    font-size: 6rem;
    margin-bottom: 0;
    text-shadow: 4px 3px 5px black;
}
h2 {
    color: #d17e32;
    font-size: 1.8rem;
    margin: 2.5rem 0 .75rem 0
}


/* header rules */

header {
    padding-top: 1rem;
    text-align: center;
}
nav ul {
    padding: 0;
}
nav li {
    display: inline-block;
    margin: 1rem .25rem;
}
nav a:link, nav a:visited {
    color: white;
    background-color: chocolate;
    padding: .5rem 1rem;
    text-decoration: none;
}
nav a:hover {
    background-color: saddlebrown;
}
nav a:active {
    background-color: gray;
}


/* hero rules */
.hero {
    background-image: url(images/hero.jpg);
    background-size: cover;
    background-position: center 75%;
    color: white;
    padding: 10%;
    text-align: center;
}
.hero p {
    font-size: 1.4rem;
    margin-top: 0;
    text-transform: uppercase;
}

/* body-copy rules */
.body-copy {
    margin: 0 auto;
    max-width: 35rem;
    width: 80%;
}
.body-copy p {
    color:#555;
    font-size: 1.1rem;
    line-height: 1.8rem;
}

/* footer rules */
footer {
    background-color:#e9d8c8;
    padding: 1rem;
    text-align: center;
}
footer a {
    margin: 1rem .25rem;
    text-decoration: none;
}