@charset "utf-8";

body {
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	line-height:1.5rem;
	background-image: url("images/ilya-pavlov-unsplash_1920x1281.jpg"); /*Photo by Ilya Pavlov on Unsplash*/

	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

p{
	color:rgba(72,52,55,1.00);
}

h1 {
	font-family: brush-atf, sans-serif; 
	font-style:light;
	font-size:4rem;
	line-height:4rem;
	color:rgba(72,52,55,1.00);
	text-align:center;
}

h2{
	font-size:2rem;
	font-weight:bold;
	padding-top:1.5rem;
	padding-bottom:1.5rem;
	color:rgba(72,52,55,1.00);
}

a:link, a:visited{
	color:black;
	font-style:italic;
}

a:hover, a:active{
	color:orange;
	font-style:italic;
}

#container {
	width: 960px;
	background-color: rgba(255,255,255,0.95);
	margin: auto;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
}

header{
	padding-top:30px;
	flex:100%;
	flex-direction:column;
	text-align:center;
	margin-bottom:20px;
}

section{
	background-color:rgba(204,204,204,0.75);
	flex-basis:40%;
	padding:20px;
	margin:10px 0px 0px 0px;
	border-radius:5px;
}

#about{
	flex-direction:column;
	padding-top:25px;
}

#about p{
	align-content:center;
	align-items:center;
	justify-content:center;
	flex-basis:50%;
	line-height:1.75rem;
	padding:20px;
}

#about h1{
	font-size:3rem;
}

footer{
	padding-top:25px;
	display:flex;
}

ul, ol{
	margin-left: 0px;
}

ul li{
	font-size:1.25rem;
}

#validator {
	color:rgba(0,22,156,0.91);
	padding-bottom:20px;
}


@media only screen and (max-width: 1020px) {
	#container{
		width:auto;
	}
	
	section{
		margin:5px;
		flex-basis:42%;
	}
	
	h1{
		font-size:3.5rem;
		line-height:3.5rem;
	}
}


@media only screen and (max-width: 650px) {
	#container{
		display:block;
	}
}


