

body {
    background-image: url('../images/homepage-image.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: 	#645c51;
    margin: 0;
    margin-top: -16px;
    overflow: hidden;
 }


 /* ----- NAVBAR AND HOMEPAGE IMAGE ----- */

.navbar > ul {
    list-style-type: none;
    display: flex;
    padding-top: 0;
    background-color:#515964;
    height: 80px;
    text-transform: uppercase;
}

.navbar a, li {
    text-decoration: none;
    font-family: sans-serif;
    color: white;
    margin-right: 20px;
    font-size: 30px;
    margin-top: 23px;
}

.navbar li > a:hover {
    background-color: white;
    color: black;
}

h1 {
    margin-top: 200px;
    text-align: center;
    font-size: 5em;
    color: white;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
}

main {
    min-height: 60vh;

}

h2 {
    font-size: 45px;
    color: white;
    text-align: center;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
}

/* ----- FOOTER ----- */

footer {
    background-color: #515964;
    height: 100px;
    width: 100%;
}

footer ul {
    display: flex;
    flex-direction: row;
}

footer a, footer li {
    font-size: 20px;
    color: white;
    margin: 0 auto;
    margin-top: 30px;
    text-decoration: none;
    list-style-type: none;
}