/* 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." */

body {
    font-size: 18px;
    color: navy;
    background-color: lavender;
    font-family: Candara, Arial;
    font-style: normal;
    text-decoration:none;
    text-transform:none;
}

a:link {
  color:maroon;
  text-decoration: none;
}

a:visited {
  color:#A8689F;
  }
  
a:hover {
  font-size:130%;
  }

h1 {
  color:lavender;
  background-color:navy;
  }
  
h2 {
  background-color:#FFFFFA;
  
  margin: 15px 10px 15px 10px;
  padding: 40px;
  
  border:10px 5px 10px 5px double navy;
  
  text-align: right;
  }
  
table {
  text-align:center;
  }
  
q {
  color:#672F8F;
  font-family:Garamond, Georgia, "Times New Roman";
  font-size:20px;
  }
  
blockquote {
  color:#672F8F;
  font-family:Garamond, Georgia, "Times New Roman";
  font-size:20px;
  }
  
.ramble {
  font-family:"Comic Sans MS";
  }
  
.ask {
  background-color:#FFFFFA;
  }
  
  
#hey h4 {
  text-transform:uppercase;
  }
  

  
  
  
  
  
  
  
  
  
  /*the end*/
  