body{
	background: black;
	color: white;
}

.layout{
	display: grid;
	grid-template-columns: 700px;
	justify-content: center;
}

main{
	padding: unset;
	z-index: unset;
}

/*=============gridArea declarations=============*/
#quoteBox h1{
	grid-area: header;
}
.qArea{
	grid-area: qArea;
}
#socialIcons{
	grid-area: social;
}
#quoteBox button{
	grid-area: nextQuote;
}
/*=============gridArea declarations=============*/

#quoteBox{
	justify-self: center;
	align-self: center;
	display: grid;
	/*width: 700px;*/
	grid-template-areas:
	'header header'
	'qArea qArea'
	'social nextQuote';
	grid-template-rows: 0fr minmax(400px, 1fr) 0fr;
}

#quoteBox h1{
	font-family: 'Abril Fatface', cursive;
	margin-bottom: 0;
	letter-spacing: 3px;
    font-size: 6rem;
    font-weight: 100;
}

#quoteBox p, #quoteBox button{
	font-family: 'Open Sans', sans-serif;
}

.qArea{
	font-size: 2rem;
	padding: 20px;
}

#socialIcons img {
	padding: 5px;
	border: 0;
	box-shadow: 0;
	display: inline;
}
#quoteBox button{
	padding: 10px;
	border-radius: 3px;
	font-size: 2rem;
	background: transparent;
    color: white;
    border: 1px solid #ddd;
}

@media only screen and (max-width: 768px){
	.layout{
		grid-template-columns: 1fr;
	}

	#quoteBox{
		grid-template-areas:
		'header'
		'qArea'
		'social'
		'nextQuote';
		grid-template-rows: 0fr minmax(300px, 1fr) 0fr 0fr;
	}
	#quoteBox h1{
		font-size: 3rem;
		padding: 0 30px;
		text-align: center;
	}
	#quoteBox button{
		width: 350px;
		margin: 0 auto;
	}
	#socialIcons{
		text-align: center;
		margin-bottom: 20px;
	}
	.qArea{
		font-size: calc(1rem + 1vw);
	}

}
