@import url('https://fonts.googleapis.com/css2?family=Abel&family=Nova+Square&display=swap');
body {
    background-color: #e4f1f1;
    font-family: "Abel", sans-serif;
    margin: 0;
    padding: 0;
}


/* heading rules */

h1, h2, h3, h4, h5, h6 {
    font-family: "Nova Square", sans-serif;
}
h1 {
    font-size: 6rem;
    margin-bottom: 0;
    text-shadow: 4px 3px 5px black;
}
h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 .75rem 0;
}

/* header rules */

header {
    background-color: #60adb1;
    padding: 1rem;
    text-align: center;
}
nav ul {
    padding: 0;
}
nav li {
    display: inline-block;
    margin: 1rem .25rem;
}
nav a:link, nav a:visited {
    color: #e4f1f1;
    background-color: #1b2d2f;
    padding: .5rem 1rem;
    text-decoration: none;
}
nav a:hover {
    background-color: #e4e270;
    color: #1b2d2f;
}
nav a:active {
    background-color: #e4f1f1;
    color: #1b2d2f;
}


/* hero rules */
.hero {
    background-image: url(images/hero.jpg);
    background-position: center 65%;
    background-size: cover;
    color: white;
    padding: 10%;
    text-align: center;
}
.hero p {
    font-size: 1.7rem;
    margin-top: 0;
    text-transform: uppercase;
}

/* main rules */

section {
    margin: auto;
    max-width: 35rem;
    width: 80%;
}
section p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* footer rules */
footer {
    background-color: #60adb1;
    padding: 1rem;
    text-align: center;
}
footer a {
    margin: 1rem 1rem;
    text-decoration: none;
}