/* CSS code for my "Main Theme" */


/*-----B O D Y-----*/


* {
	margin:0px;
	padding:0px;
	letter-spacing:5px;
	font-smooth: never;
	-webkit-font-smoothing: none;
	/*-moz-osx-font-smoothing: grayscale;*/
	
	}

body {
  background:url('');
  background-attachment:fixed;
  color:#000000;
  font-family: 'EB Garamond', serif;
  letter-spacing:1px;
}

/*-----NAVIGATION-----*/

#navigation {
	
	background-color:black;
	width:800px;
	height:auto;
	margin-left:auto;
	margin-right:auto;
	margin-top:50px;
	box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3); 
	text-shadow: 0px 0px 6px #383838;
	text-align:auto;
	padding-top:0px;
	padding-bottom:20px;
	border: solid 1px #ffffff;
	}
	
#blankspace {
  
 background-color:transparent;
 height:200px;
 width:1300px;
 margin-left:auto;
 margin-right:auto;
 text-align:center;
}

/*-----CONTAINERS-----*/

.h1 {
  width:850px;
  height:auto;
  background-color:black;
  margin-left:0px;
  margin-right:auto;
  padding-top:20px;
  padding-bottom:20px;
	font-size:25px;
	color:#ffffff;
	border-bottom:solid 1px #666666;
	}
	
.container{
	width:850px;
	height:auto;
	background-color:black;
	margin-left:auto;
	margin-right:auto;
	padding-top:-200px;
  padding-bottom:20px;
	margin-top:30px;
	text-align:center;
	font-size:13px;
	color:#ffffff;
	box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
	
	}
	
/*-----ART DISPLAY-----*/
.artdisplay{
	width:300px;
	height:auto;
	background-color:black;
	margin-left:-5px;
	padding-top:20px;
  padding-bottom:20px;
	margin-top:30px;
	text-align:center;
	font-size:13px;
	box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
	
	}

	
/*-----LINKS-----*/
a {
  color:#ffffff;
}

a:visited {
	color:#ffffff;
	}
	
a:hover {
	color:#ffffff;
	}
	

	
	/*-----TEXT ANIMATIONS-----*/
	
	.fadetext {
	animation: blink 3s linear infinite;
	animation-delay:0s;
	letter-spacing:3px
	
	}

@keyframes blink {
  50% {
	  color:black;
  }
}
  