@charset "UTF-8";

html,body {
    margin:0;
    padding:0;
    text-align: center;
}

body {
    background-color: rgb(231, 217, 183);
    font-family: Helvetica, sans-serif
}

header {
    height: 200px;
    background-color:rgb(238, 229, 207);
}

nav {
    height: 75px;
    background-color: rgb(43, 43, 43);
    position: relative;
    z-index: 10001;
}

nav ul {
    list-style-type: none;
    list-style-image: none;
    display:flex;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
}

nav ul li {
    position: relative;
    flex-grow: 1;
}

nav ul li a {
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

nav ul li a:hover {
    color: rgb(239, 126, 91);
}

nav ul li ul {
    position: absolute;
    background-color: rgb(43, 43, 43);
    width: 100%;
    flex-direction: column;
    display: none;
}

nav ul li:hover ul {
    display: block;
}


main {
    background-color: rgb(238, 229, 207);
    width: 80%;
    opacity: 40;
    margin-left: auto;
    margin-right: auto;

    /* #s in sequence: top right bottom left. */
    padding: 20px 45px 45px;
}

h1,h2,h3,h4,h5,h6,p,ul,ol,li {
    margin: 0;
}

img {
    margin: 30px;
}

.rollover-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 20px;
}

.rollover-text a {
    color: black
}

.rollover-text a:hover {
    color: rgb(239, 126, 91)
}

/* 

.rollover-text a:visited {
    color: rgb(239, 126, 91)
}
*/

.rollover-text .decoration {
    text-decoration:none;
}

p{
    text-align:justify;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.4;

}

.split-lines {
    line-height: 2;
}

.font-tweak {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: medium;
}

section h3 {
    display: none;
    margin-top: 20px;
    color: brown;
}

h1 {
    color: rgb(239, 126, 91);
    font-size: 3rem;
    text-transform:uppercase;
    letter-spacing: 0.5rem;
}

.blue {
    color: blue;
    font-weight: bolder;
    text-transform: uppercase;
}

h2 {
    color: rgb(239, 126, 91);
    margin: 0px,0px,20px;
    font-size: 2rem;
}

h2,h3,h4,h5,h6 {
    text-shadow: 4px 4px 10px blue;
}

footer{
    height: 100px;
    background-color: rgb(239, 126, 91);
}

footer:hover {
    background-color: rgb(43, 43, 43);
}

