/* Style for the body */
body {
  background-color: #000032; /* changed background color */
  color: #555;              /* dark gray text */
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; /* added fonts */
}

/* Style for the header */
header {
  background-color: #002171; /* dark blue header background */
  color: #FFF;               /* white header text */
  background-image: url('images/sunset.jpg'); /* added background image */
  background-repeat: no-repeat;     /* no repeat */
  background-position: right;       /* position background to the right */
  line-height: 400%;               /* added line height */
  text-indent: 1em;                /* added text indent */
}

/* Style for the nav */
nav {
  background-color: #BBDEFB; /* light blue navigation */
  font-weight: bold;          /* added font weight */
}

/* Style for nav links */
nav a {
  text-decoration: none;      /* remove underline from links */
}

/* Style for the main heading */
h1 {
  margin-bottom: 0;          /* remove extra space under h1 */
}

/* Style for headings h1, h2, h3 */
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", Times, Baskerville, serif;
}

/* Style specifically for h2 color */
h2 {
  color: #1976D2;
}

/* Style for terms in definition lists */
dt {
  color: #002171;            /* dark blue terms */
}

/* Style for the address element */
address {
  font-style: normal;         /* removes default italic */
} 
 
footer {
  font-size: 75%;
  font-style: italic;
  text-align: center;
}

/* Style for the .resort class */
.resort {
  color: #1976D2;             /* medium blue for resort name */
  font-weight: bold;
}