/* 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 {
  background-color: #3C374F;
  color: white;
  font-size: 1.2em;
}

header {
  background-color: #2B1E3B;
  padding: 10px;
}
nav {
  background-color: #111111;
  width: auto;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
nav li {
  float: left;
  width: 200px;
}
nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  
}
nav li a {
  background-color: #111111;
}
.current {
  background-color: #524D59;
}



h1 {
  font-family: "Lucida Handwriting", "Lucida Calligraphy", cursive;
  text-shadow: 4px 8px 6px #8A140F;
  
}
h2 {
  color: #e6e6e6;
  text-shadow: 5px 5px 10px black;
}
h3 {
  margin: 0px;
  color: #f7dada;
  text-shadow: 5px 5px 10px black;
}
.wrapper {
  width: 940px;
  border: 10px #450303;
}
.containerBox {
  background-color: #574869 ;
  margin: 5px;
  padding: 5px 10px;
  border-radius: 15px;
 
  
}
a {
  text-decoration: none;
  color: #3acf3a;
}
a:hover {
  color: #19e319;
  text-shadow: 1px 4px 4px white;
}
.artwork {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.artwork img {
  width: 80%;
  border: 2px solid black;
}