/* External stylesheet to configure color and text properties for Pacific theme */

body { /* Body styles */
    background-color: #FFFFFF; /* Bright white background */
    color: #666666; /* Grey text */
    font-family: Verdana, Arial, sans-serif; /* Verdana, Arial, or sans-serif Fonts*/
}

header { /* Header styles */
    background-color: #002171; /* Dark blue background */
    color: #FFFFFF; /* White text */
    font-family: Georgia, serif; /* Georgia or serif Fonts */
}

h1 { /* H1 styles */
    line-height: 200%; /* Double line height */
}

nav { /* Navigation styles */
    font-weight: bold; /* Bold text */
    background-color: #BBDEFB /* Sky blue background */;
}

h2 { /* H2 styles */
    color: #1976D2; /* Medium blue text */
    font-family: Georgia, serif; /* Georgia or sans-serif Fonts */
}

dt { /* Definition term styles */
    color: #002171; /* Dark blue text */
    font-weight: bold; /* Bold text */
}

.resort { /* Resort class styles */
    color: #1976D2; /* Medium blue text */
    font-size: 1.2em; /* 1.2 times normal size */
}

footer { /* Footer styles */
    font-size: 0.70em; /* 70% of normal size */
    font-style: italic; /* Italic text */
    text-align: center; /* Centered text */
}
#wrapper {  /* Wrapper styles */
    width: 80%; /* 80% width */
    margin-right: auto; /* Centered horizontally */
    margin-left: auto; /* Centered horizontally */

}