#wrapper {
	background-image: url('../images/homeimage.png');
	background-position: 50% 4vh;
	background-repeat: no-repeat;
}
main, aside {
	text-shadow: 2px 2px 5px #000, -2px -2px 5px #000, 2px -2px 5px #000, -2px 2px 5px #000;
}
main {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
main ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
main > ul > li {
	margin-bottom: 1ex;
	font-weight: bold;
}
#home_message {
  font-family: 'Open Sans';
  font-weight: 800;
  margin-bottom: 1em;
}
#home_message h2 {
  font-size: 5vw;
  margin-bottom: 5px;
}
#home_message ul {
	font-size: 4vw;
}
#home_message li {
	display: inline;
}
#home_message li:after {
	content:", ";
}
#home_message li:last-child:after {
	content: "";
}
#new_shit {
	display: inline-flex;
}
#new_shit h4 {
  font:25px/1 'Anton', sans-serif;
  color: #c00;
  background-color: #000;
  border: 2px solid #fff;
  width: 50px;
  height: 52px;
  text-align: center;
  text-transform: lowercase;
  padding: 3px;
  margin-right: 15px;
}
#new_shit ul {
	font-size: 90%;
}
@media only screen and (max-width: 600px) {
 	main > ul {font-size: 5vw;}
}
@media only screen and (min-width: 600px) {
	#wrapper {
		background-position: 50% 0;
	}
 	main > ul:first-child {font-size: 0.9rem}
 	#home_message h2 {
    font-size: 1.5rem;
  }
  #home_message ul {
		font-size: 1.2em;
	}
}
@media only screen and (min-width: 960px) {
	background-size:100%;
	#home_message h2 {
    font-size: 1.75rem;
  }
  #new_shit ul {
		font-size: 1em;
	}
}