/* 
Author: Shannon Mahan 
Date: 2-7-2025 
File Name: styles.css 
*/

/*CSS Reset */
body, header, nav, main, footer, div, img, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Style rules for body */
body {
	background-color: lightblue;
}

/* Style rules for images */
img {
    padding: 2em;
    height: auto;
    max-width: 70%;
    width: 450px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Style rule for header */
header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: white;
    height: 75px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #000;
    border-radius: 5px;
}

/* style rule for home page title. */
.test {
    font-size-adjust: .5;
}

/*Style rule for h1 headings */
h1 {
    font-family: "Francois One", serif;
    font-weight: 10;
    font-style: normal;
}

/* Style rule for h2 headings */
h2 {
    padding: 0 2em;
    font-family: "Francois One", serif;   
    font-weight: 400;
    font-style: normal;
}

/* Style Rule for h4 headings. */
h4 {
    font-family: "Francois One", serif;
    font-weight: 400;
    font-style: normal;
}

/* Style rule for navigaion area */
nav{
    padding: 1%;
    margin-bottom: 1%;
    background-color: white;
}

nav ul{
    list-style-type: none;
    text-align: center;
    border: 1px solid #000;
    border-radius: 5px;
}
/* Style rule for  navigation list */
nav li {
    display: inline-block;
    font-size: 1.0em;
    font-family: "Francois One", serif;
    font-weight: bold;
    padding: 0 2em;
    border-top: 1px solid #fff;
}

nav li:first-child {
    border-top: none;
}

/*Style rules for navigation list anchor content */
nav li a {
    text-decoration: none;
}

/*Style mobile class, hide tablet-desktop class*/
.mobile {
    display: block;
}

.tablet-desktop {
    display: none;
} 

/* Style rule for main content */
main {
    clear: left;
    font-family: "Roboto Slab", serif;
}

/*Style rules for main list content */
main li {
    padding: 1em;
    list-style: none; 
    font-family: "Roboto Slab", serif;
}

/*Style rules for main unordered list content */
main ul {
    padding: 0 2em;
}

main dl{
    padding: 0 3em;
    font-family: "Roboto Slab", serif;
}

/*Style rule for div paragraph */
div p {
    padding: 0 3em;
    font-family: "Roboto Slab", serif;
}


/* Style rules for footer content */
footer p {
    font-size: 0.75em;
    text-align: center;
    color: black;
    padding: 0 1em;
}

/*Style rules for footer anchor content */
footer a{
    color: black;
    text-decoration: none;
}