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

body{
	text-align: center;
	color: #FFF; 

    background: #907AD6; 

}

h1, h2, h3{
  width: 100%;
    font-family: "Rubik Vinyl", system-ui;
  font-weight: 400;
  font-style: normal;
}


body a{
  color: #fff;
}

body p{
    font-family: "Archivo", sans-serif;
}

#wrapper{
		width: 900px; 
		margin: 0 auto;
		color: #fff; 
}


/*header*/

#header{
  width: 900px;
}

#header h1{
  font-size: 60px;
}


/*sidebar styles*/

#sidebar{
	margin-top: 20px;
	width: 230px;
	float: left;
	padding-left: 10px;
	padding-bottom: 10px;
}


#sidebar a:hover{
	color: #000; 
	font-weight: bold;
	}

#sidebar img{
	border: 0;
	padding-top: 70px;
}

#sidebar .bottom img{
vertical-align: bottom;
}

.card{
  background: #fff;
 color: #3E2F5B;
  width: 100%;
  border-radius: 10px;
  padding: 5px;
  
  margin-top: 10px;
}

.card p{
   color: #3E2F5B;
   font-size: 14px;
  
  }

.cardTop{
  background: #3E2F5B;
  color: #fff;
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  padding-top: 3px;
  padding-bottom: 3px;
  text-align: center;
}

.cardTop h2{
  text-align: center;
  font-size: 20px;
}

.cartTop .modlist p{
  text-align: left;
}

.card h3{
  font-size:16px;
}

.card ul, .card li{
  text-align: left;
  font-size: 12px;
  font-family: "Archivo", sans-serif;
}


.card ul ul {
    padding-left: 1em;
}

.heroimage{
  padding: 5px;
}

.yearnav p{
  text-align: center;
}
/*content styles*/

#content{
	width: 630px; 
	float: right;
	margin-top: 20px;
	color: #fff; 
	padding-bottom: 10px;
}

#content p{
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
}

#content img{
	margin-left: 2px;
	padding-left: 5px; 
	border: 0;
}

.floatleft{
	float: left;
	margin: 10px 10px 10px 10px;
	padding: 4px; 
	border: 1px solid #fff; 
}

.floatright{
	float: right;
	margin: 10px 10px 10px 10px;
	padding: 4px; 
	border: 1px solid #fff; 
}

#content a{
	color: #000; background: #fff; 
	font-weight: bold;
	text-decoration: none;
}

#content a:hover{
	color: #fff; background: #fff; 
	text-decoration: underline; 
}

#content ul{
  text-align: left;
}

#content h1, h2, h3{
  text-align: left;
}

/* footer*/

#footer{
  clear: both;
  width: 900px;
  text-align: center;
  border-top: 1px solid #DABFFF;
  margin-top:20px;
  }



