/*element selectors*/
html {
    background-color: rgb(255,255,238);
    font-family: trebucher, geneva, sans-serif;
}
body{
    width:98%;
    margin:auto;
}
/*multiple tag selectors*/
h1, h2, h3 {
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase; /* text-transform: https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform */
}
img,video, embed{
    max-width: 60%
}

aside{
    text-align:center
}
/* deswedant selectors*/
body {
    font-family: Georgia, Times New ;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* background-color: https://developer.mozilla.org/en-US/docs/Web/CSS/background-color */
    color: #333;
    line-height: 1.6;
}

nav {
    background-color: #333;
    padding: 10px 0;
    text-align: center; /* text-align: https://developer.mozilla.org/en-US/docs/Web/CSS/text-align */
}

nav ul {
    list-style: none; /* list-style: https://developer.mozilla.org/en-US/docs/Web/CSS/list-style */
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none; /* text-decoration: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration */
    padding: 8px 12px;
    border-radius: 5px;
}

/*classes*/
.floatRight {
    float:right;
    padding: 8px;
}
.floatLeft{
    float:left;
    padding:8px;
}
figure {
    margin: 20px auto;
    text-align: center; /* text-align: https://developer.mozilla.org/en-US/docs/Web/CSS/text-align */
}

figure img, figure video, figure audio, figure iframe {
    max-width: 90%; /* max-width: https://developer.mozilla.org/en-US/docs/Web/CSS/max-width */
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* box-shadow: https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
}

figcaption {
    font-style: italic;
    color: #777;
    margin-top: 5px;
}
a {
  color: #007bff;
  text-decoration: none; /* text-decoration: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration */
}

a:hover {
  text-decoration: underline;
}
/*id selectors*/