/* CSS RESET */
header, body, nav, footer, main, img, h1, ul {
    margin: 0;
    padding: 0;
    border: 0;
}

/* style rules for images and banner image */
img {
    display: block;
    max-width: 90%;
    margin: auto;
}

#banner {
    margin: auto;
}

.things-img {
    width: 75%;
    height: 75%;
    padding: 0.7em;
}

#logo {
    width: 100px;
    height: 100px;
    float: left;
    margin: 0em;
    padding: 0em;
}

/* style rules for tablet-desk */
.tablet-desk {
    display: none;
}

/* style rules for body */
body {
    background-color: #fcc7d1;
}

/* style rules for header */
header {
    text-align: center;
    font-size: 1.7em;
}

h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: lighter;
    color: #ffffff;
    padding: 2%;
}

h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    color: #ffffff;
}

h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    color: #db8192;
}

/* style rules for nav */
nav {
    background-color: #db8192;
}

nav ul {
    list-style-type: none;
    text-align: center;
}

nav li {
    display: block;
    border-bottom: 1.5px solid #db8192;
    font-size: 1.5em;
    padding: 0.5em;
}

nav li a {
    display: block;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
}

/* style rules for main */
main {
    padding: 1em;
    background-color: #fcc7d1;
    overflow: auto;
}

p {
    margin: 10px 3%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

#center {
    text-align: center;
    color: #ffffff;
}

.desctitle {
    font-size: 1.2em;
    font-weight: bold;
    color: #76928B;
}

.descbody {
    margin: 0px 8%;
}

p a:link {
    color: #a28d72;
}

p a:hover {
    background-color: #c9d9d5;
}

p a:visited {
    color:#664F33;
}

p a:active {
    color: #fff;
}
/* rules for figures in main */
figure {
    position: relative;
    max-width: 600px;
    margin: 2% auto;
    border: 3px solid #ffffff;
    margin-bottom: 3%;
    box-shadow: 5px 5px #db8192;
}


/* style rules for footer */
footer {
    text-align: center;
    color: #ffffff;
    font-size: 0.6em;
    background-color: #db8192;
    padding: 0.5em 0em;
}

/* Media Query for Tablet */
@media screen and (min-width: 550px), print {

/* Tablet Viewport: show tablet-desk */
.tablet-desk {
    display: block;
}

/* Tablet Viewport: style rules for nav */
nav ul {
    text-align: left;
}

nav li {
    border-bottom: none;
    display: inline-block; 
    font-size: 1.2em;
}

nav li a {
    padding: 0.5em;
}

/* Tablet Viewport: style rule for images */
img {
    width: 80%;
    height: 80%;
    margin: auto;
}

/* Tablet Viewport: Style rules for map */
.map {
    width: 480px;
    height: 480px;
}
}

/* Media Query for Desktop Viewport */
@media screen and (min-width: 769px), print {

/* Desktop Viewport: Style rules for nav */
nav ul {
    text-align: center;
}

nav li {
    font-size: 1.5em;
}

nav li a {
    padding: 0.2em;
}

nav li a:hover {
    color: #db8192;
    background-color: #ffffff;
}

/* Desktop Viewport: style rules for h3 */
h3 {
    font-size: 1.4em;
    font-style: italic;
}
}

/* Media Query for Large Desktop Viewport */
@media screen and (min-width: 1280px), print {

/* Large Desk Viewport: style rules for p links */

p a:link {
    font-size: 1.2em;
}

/* Large Desk Viewport: style rules for centerlist class */
.centerlist {
    font-size: 1.2em;
}

/* Large Desk Viewport: style rules for h3 */
h3 {
    font-size: 1.6em;
    font-style: italic;
}
}