/* general styles */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: #F4ECD6;
    color: #1C110A;
    font-family: "Tinos", 'Times New Roman', Times, serif;
}

h1, h2 {
    font-family: "Fira Sans", Verdana, sans-serif;
    margin-top: 3%;
    margin-bottom: 3%;
}

h1 {
    text-shadow: 3px 3px #1C110A;
    text-align: center;
    color: #F4ECD6;
}

h2 {
    padding-bottom: 3%;
}

a {
   color: #1C110A;
   text-decoration: underline;
}

a:hover {
    color: #1C110A;
    text-decoration: none;
 }

a:visited {
    color: #1C110A; 
 }

nav a {
    color: #F4ECD6;
    text-decoration: underline;
 }
 
nav a:hover {
     color: #F4ECD6;
     text-decoration: none;
  }
 
nav a:visited {
     color: #F4ECD6; 
  }

/* styling for the header including the navigation menu */

header {
    background-color: #AAA;
    background-image: url("../images/clubhouseFar.JPG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    min-height: 40vh;
}

.navigationList {
    list-style-type: none;
    display: flex;
}

nav {
    background-color: #724040;
    font-family: "Fira Sans", Verdana, sans-serif;
}

nav ul {
    justify-content: space-evenly;
    overflow: hidden;
    flex-wrap: wrap;
}

nav ul li {
    padding: 2em;
}

nav ul li:hover {
    background-color: #472925;;
}

/* main content styling */

main {
    padding: 0% 15% 3% 15%;
}

/* footer content styling */

footer {
    display: flex;
    justify-content: space-evenly;
    padding: 3% 0%;
    color: #1C110A;
    background-color: #88B7B5;
}

.footerContent {
    padding-bottom: 3%;
}

footer div ul {
    margin-left: 5%;
}

.footerContent p:first-of-type{
    font-weight: bold;
    padding-bottom: 3%;
}

.footerContentSpacing {
    margin-top: 5%;
}