/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html {
  font-size:62.5%;
}

header {
  background-color: white;
  color: white;
  font-family: Georgia;
}

homenav {
  background: rgba(255, 255, 255, 0.3);
  text-align: center;}
  homenav > a:last-child {
    border-right: none; }
  homenav ul, homenav ol {
    list-style: none;
    padding: 0px; }
  homenav li {
    display: inline-block;
    font-size: 2.4rem;
    border-left: 2.0rem solid rgba(255, 255, 255, 0.1);
    border-right: 2.0rem solid rgba(255, 255, 255, 0.1);}
  homenav a {
    color:#000000
  }
    
nav {
  background: rgba(255, 255, 255, 0.3); }
  nav > a:last-child {
    border-right: none; }
  nav ul, nav ol {
    list-style: none;
    margin: 0;
    padding: 0px; }
  nav li {
    display: inline-block;
    font-size: 2rem;
    margin: 0;
    border-right: 20px solid rgba(255, 255, 255, 0.1);}

figure {
  margin:25px 0;
}
figcaption {
  height:auto;
  width:60% 0;
  text-align:center;
  font-size:1.6rem;
  font-style:italic;
  letter-spacing:0.025rem;
  line-height:1.15;
}


body {
  height: auto;
  max-width: 800px;
  padding: 25px;
  margin: 0 auto;
  background-color: white;
  color: black;
  font-family: Arial;
}

div {
  height: auto;
  max-width: 1000px;
  margin: 0;
  background-color: white;
}

h1 {
  color:white;
  font-family: Georgia;
  font-size:3.0rem;
  margin:2rem 0;
  padding:1rem 0;
  background-color: teal;
  text-align:center;
  letter-spacing:.025em;
  word-wrap:break-all;
}

h3 {
  font-family: Helvetica;
  font-size:2.0rem;
  margin:2.0rem 0;
  letter-spacing:.05rem;
}

p {
  background-color: white;
  font-family: Helvetica;
  font-size:1.6rem;
  letter-spacing:.075rem;
  line-height:1.25;
  margin:2rem 0;
}

blockquote {
  padding: 45px;
  border-left: 10px solid #ccc;
  font-style: italic;
  font-size: 16px;
  }


a {
  color: #3B8BBA; }
  a:hover, a:focus, a:active {
    color: #22516d; }
    

img{
  width: 80%;
  height: auto;
}

ul {
  font-family: Helvetica;
  margin: 0 auto;
}

li {
  font-size:1.6rem;
  letter-spacing:.075rem;
  padding: 2px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;

}

.linkcenter{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 0 auto;
}
  
 