/* 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 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  min-width: 256px;
  padding-top: 8px;
  padding: 24px;
}

div {
  background-color: rgba(255, 246, 211, 0.8);
  border: 2px solid #7c3f58;
  color: #7c3f58;
  font-family: 'Courier New';
  
  padding: 24px;
  /*padding-top: 8px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  */
}
html{
  background-image: url("images/dither_it_banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
nav ul{
  list-style-type: none;
  background-color: #eb6b6f;
  border: 4px solid #eb6b6f;
  border-radius: 10px;
  font-weight: bold;
  padding: 16px;
}
nav ul li{
  display: inline;
  border-right: 4px solid #fff6d3;
  padding-right: 16px;
  padding-left: 16px;
}

nav ul li:last-child{
  border-right: none;
}
nav ul li a{
  text-decoration: none;
  color: #fff6d3;
}
