
/* html selectors */

body {
    background-color: #fffefe;
}

ul {
    list-style: none;
}

ul li a {
    text-decoration: none;
    color: whitesmoke;
    padding-left: 10px;
    padding-right: 10px;
}


header {
    max-width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}


header img {
    max-width: 6em;
    padding: 10px;
}


header h2 {
    padding-top: .5em;
}

ul {
    list-style: none;
    background-color: #1D488A;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    color: whitesmoke;
}


ul,
h1,
h2 {
    font-family: 'Libre Baskerville', serif;
    color: #1D488A;
}

h3, p, td, span, address, figcaption, form{
    font-family: 'Mukta', sans-serif;
}

ul li {
    padding: 10px;
}

h1,
h3, 
figcaption{
    text-align: center;
}

figcaption {
    font-size: 20px;
}

main {
    max-width: 1050px;
    margin: 0 auto;
    align-items: center;
    display: grid;
}


section {
    padding: 12px;
    margin-top: 10px;
}

.active {
    background-color: steelblue;
}

a:active {
    color: #ff8989;
    text-align: center;
    display: inline-block;
}

a:hover {
    color: #a0a0a0;
    text-align: center;
    display: inline-block;
    
}

header a:link {
    color: whitesmoke;
}

header a:visited {
    color: whitesmoke;
}


footer {
    background-color: #1D488A;
    height: 80px;
    text-align: center;
    padding-top: 30px;
    color: whitesmoke;
}

table {
    margin-left: auto; 
    margin-right: auto;
    color: #82746B;
}


table, tr, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px;
}

table th {
    font-family: 'Mukta', sans-serif;
}

iframe{
    display: none;
}

aside {
    position: absolute;
    top: 60px;
    left: 60px;
    background-color: #9D866B;
    opacity: 0.67;
    color: #f1f4f3;
    padding-left: 20px;
    padding-right: 20px;
}

form {
    align-items: center;
}

label {
    display: inline-block;
    clear: left;
    width: 150px;
    text-align: right;
    padding: 10px 10px 10px 0;
}

input, select {
    display: inline-block;
    padding: 3px 3px 3px 0;
    margin: 10px;
}

input[type=submit], input[type=reset] {
    margin-top: 15px;
    cursor: pointer;
    padding: 8px 8px;
    background-color: #9D866B;
    width: 80px;
}

article {
    box-shadow: 0 0 15px 0 #9D866B;
    border: ridge gray;
}

article img {
    width: 100%;
}

/* class selectors */

img[data-src] {
    filter: blur(0.1em);
}
  
img {
    filter: blur(0em);
    transition: filter 1s;
}

.grid-main {
    margin: 0 auto;
    max-width: 1820px;
}

.gallery img {
    width: 100%;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    border: none;
}

.navigation li:first-child {
	display: block;
}

.navigation li {
	display: none;
}

.responsive li {
	display: block;
}

.header {
    margin-right: 7em;
    padding: 5px;
}

.grid {
    max-width: 1500px;
}

.home {
    display: grid;
    border: none;
    grid-column-gap: 50px;
    text-align: center;
}

/* id selector */

#website {
    font-size: 40px;
    text-shadow: 2px 2px 3px #82746B;
}

#article img {
    float: right;
    margin: 0 0 1em 1em;
    width: 280px;
}

#hero {
    border: none;
    position: relative;
}

#hero img {
    width: 100%;
    height: auto;
}

#weather-summary {
    position: absolute;
    top: 60px;
    right: 60px;
    background-color: #9D866B;
    opacity: 0.67;
    color: #f1f4f3;
    padding-left: 20px;
    padding-right: 20px;
}

#contact {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}

#five-day {
    display: none;
}

#fish-name, #preston-name, #soda-springs-name {
    text-shadow: 2px 2px 3px #82746B;
}