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


/* Global Styles
----------------*/
html, body {
  margin: 0;
  padding: 0;
}  

/* Links 
--------*/
a {  
  color: black;
  text-decoration: none;
}

a:hover {
  color: red;
  text-decoration: none;
}

/* Header 
---------*/
header {
  color: white;
  font-family: "Helvetica";
  letter-spacing: 2px;
  
  background-color: black;
  padding: 10px 0px 30px 10px;
  margin-bottom: 10px;
  border: 0px;
}

header a {
  color: white;
  font-family: "Arial";
}

header li {
  float: left;
  margin-right:30px
}

Header ol {
  list-style-type: upper-roman;
  padding: 0px;
  margin-left: 20px;
  margin-top: -30px;
}

/* Index 
--------*/
.index {
  background-color: white;
}

/* Artwork 
------------*/
.artwork {
  background-color: white;
  display: block;
}

.artwork .horizontal_img img {
  margin: auto;
  width: 50%;
  height: 50%;
}

.artwork .vertical_img img {
  margin: auto;
  width: 25%;
  height: 25%;
}

/* Research 
-----------*/