/* Global styles for the document */
body {
    background-color: #eaeaea;
    color: #666666;
    font-family: Verdana, Arial, sans-serif;
    background-repeat: no-repeat;
}

/* Styles for the header element */
header {
    background-color: #002171;
    color: #FFFFFF;
    font-family: Georgia, serif;
    height: 120px;
    padding-top: 30px;
    padding-left: 3em;
}

header a {
    text-decoration: none;
    color:white;
}
header a:link {
    color:white
}
header a:visited {
    color:white
}
header a:hover {
    color: 90c7e3;
}

/* Styles for the h1 element */
h1 {
    text-align: center;
    padding-top: 0.5em;
    font-size: 3em;
    letter-spacing: 0.25em;
}

/* Styles for the nav element */
nav {
    font-weight: bold;
    padding: 1.5em;
    float: left;
    font-size: 120%;
    width: 160px;
}

/* Remove underline from hyperlinks in nav */
nav a {
    text-decoration: none;
}

nav a:link{
    color: #5c7fa3;
}

nav a:visited {
    color: #344873;
}

nav a:hover {
    color: #a52a2a;
}

/* Styles for the h2 element */
h2 {
    color: #1976D2;
    font-family: Georgia, serif;
    text-shadow: 1px 1px 1px #cccccc;
}

/* Styles for the h3 element */
h3 {
    font-family: Georgia, serif;
}

/* Styles for the dt element */
dt {
    color: #002171;
    font-weight: bold;
}

/* Styles for a class named resort */
.resort {
    color: #1976D2;
    font-size: 1.2em;
}

/* Styles for the footer element */
footer {
    margin-left: 190px;
    font-size: 0.70em;
    font-style: italic;
    text-align: center;
    padding: 1em;
    background-color: white;
}

/* Style rule for the wrapper ID */
#wrapper {
    background-color: #FFFFFF;
    min-width: 960px;
    max-width: 2048px;
    margin-right: auto;
    margin-left: auto;
    background: linear-gradient(#FFFFFF, #90C7E3);
    background-color: #90C7E3;
    border: 1px solid #000033;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Styles for the main element */
main {
    margin-left: 190px;
    padding-left: 30em;
    padding-right: 2em;
    display: block; /* For IE compatibility */
    background-color: #FFFFFF;
    overflow:auto;
}

section {
    float: left;
    width: 20%;
    padding-left: 2em;
    padding-right: 2em;
}

/* Styles for the homehero ID */
#homehero {
    margin-left: 190px;
    height: 300px;
    background-image: url('coast.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Styles for the yurthero ID */
#yurthero {
    margin-left: 190px;
    height: 300px;
    background-image: url('yurt.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Styles for the trailhero ID */
#trailhero {
    margin-left: 190px;
    height: 300px;
    background-image: url('trail.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Table Styles */
table {
    width: 90%;
    margin: 0 auto; /* Center the table */
    border: 1px solid #3399CC;
    border-collapse: collapse;
  }
  
  /* Table Cells */
  td, th {
    padding: 5px;
    border: 1px solid #3399CC;
    text-align: center; /* Center text in all cells */
  }
  
  /* Text Class (for descriptions) */
  .text {
    text-align: left; /* Override cell centering for descriptions */
  }
  
  /* Alternate Row Background Color */
  tr:nth-of-type(even) {
    background-color: #DFEDF8;
  }
