*{
	margin:0;
	padding:0;
}

html { 
	font-size: 100%; // this is usually 16px by default
	height:100%;
	background-color: black;
 }

 .wrapper{
 	min-height: 100%;
 	padding-bottom: 100px;
 	flex-grow: 1;
 }

h1 { 
	font-size: 2rem; // 24px 
}
a {
	text-decoration: none;
}
body {
	display: flex;
	background-color: black;
	color: white;
	height:100vh;
	flex-direction: column;
}
header {
	
}
#name {
	display: flex;
	justify-content: center;
	margin: 0px;
	text-decoration: underline;
	font-size: 5rem;
}
#title{
	display: flex;
	justify-content: center;
}
#titleLeft {
	margin: 0px;
	padding-right: 15px;
}
#titleRight {
	margin: 0px;
	padding-left: 15px;
}
#theater{
	text-align: center;
	padding: 15px;
	margin: 0px;
}
#reel {
	border: solid white 5px;
	width : 610px; 
	height: 310px;
}
article{
	display: flex;
	justify-content: center;
}
article p{
	width: 30%;
	padding: 15px;

}
#buttons{
	display: flex;
	flex-direction: column;
	padding: 15px;
}
#portfolioButton {
  border-radius: 4px;
  background-color: white;
  color: black;
  border: none;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 215px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;

}
#portfolioButton span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
#portfolioButton span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
#portfolioButton:hover span {
  padding-right: 25px;
}

#portfolioButton:hover span:after {
  opacity: 1;
  right: 0;
}
#aboutButton {
  display: inline-block;
  border-radius: 4px;
  background-color: white;
  border: none;
  color: black;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 215px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}
#aboutButton span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

#aboutButton span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

#aboutButton:hover span {
  padding-right: 25px;
}

#aboutButton:hover span:after {
  opacity: 1;
  right: 0;
}
#social{
	display: flex;
	flex-direction: column;
	padding: 15px;
}
.fa {
  padding: 20px;
  font-size: 30px;
  width: 25px;
  text-align: center;
  text-decoration: none;
}
.fa:hover {
  opacity: 0.7;
}
.fa-twitter {
  background: #55ACEE;
  color: white;

}
.fa-instagram {
  background: #125688;
  color: white;
}
.fa-snapchat {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.fa-youtube {
  background: #bb0000;
  color: white;
}
footer{
	display: flex;
	justify-content: center;
	position: relative;
	height: 100px;
	font-size: .8em;
	margin-top: 100px;
	background-color: black;
	clear:both;
	
}
footer p{
	padding-right: 16px; 
	font-weight: bold;
	text-decoration: none;
}
footer a{
	color: white;

}
footer a:hover{
	text-decoration: underline;
	color: blue;
}
@media only screen and (max-width: 978px) {

	#aboutButton {
		width: 200px;
	}
	#portfolioButton {
		width: 200px;
	}
	#reel {
	width : 600px; 
	height: 300px;
	margin-bottom: 30px;
	}
}
@media only screen and (max-width: 950px) {
	.wrapper{
		margin-bottom: 100px;
	}
	#portfolioButton {
	  	width: 180px;
	}
	#aboutButton {
		width: 180px;
	}
	article p{
		width: 35%;
		padding: 15px;
		margin-bottom: 60px;
	}
}
@media only screen and (max-width: 800px) {
	.wrapper{
		margin-bottom: 100px;
	}
	#reel {
		width : 550px; 
		height: 300px;
		margin-bottom: 60px;
	}
	#portfolioButton {
	  	width: 120px;
	  	font-size: 20px;
	}
	#aboutButton {
		width: 120px;
		font-size: 20px;
	}	
	article p{
		width: 40%;
		margin-bottom: 60px;
	}	

	
}
@media only screen and (max-width: 630px) {

	.wrapper{
		margin-bottom: 100px;
	}

	article p{
		width: 55%;
	}	
	#reel {
		width : 450px; 
		height: 250px;
	}
		#name {
	font-size: 3rem;
	}
}

@media only screen and (max-width: 570px) {
	#reel {
		width : 400px; 
		height: 200px;
	}
	article{
		flex-wrap: wrap;
	}
	article p{
		width: 100%;
	}
	#social{
		order: 1;
	
	}
	#buttons{
		order: 2;
	}
	footer p{
		padding-right: 8px; 
	}
	
}
@media only screen and (max-width: 420px) {
	#reel {
		width : 300px; 
		height: 180px;
		margin-bottom: 60px;
	}
}

@media only screen and (max-width: 360px) {
	#reel {
		width : 250px; 
		height: 150px;
	}	
}






