/* CSS Document */
.container .template{
	grid-column: 1/5;
}
img,video{
	margin: 2rem auto;
	display: block;
}
.hero{
	width: 100%;
	height: 80vh;
	background-position: center;
	background-size: cover;
}
.intro{
	margin-top: 2rem;
}
.intro h1{
	width: 80%;
	margin-bottom: 1rem;
}
.intro h2{
	font-weight: lighter;
	font-size: 1.5rem;
}
.intro .role{
	margin-top: 2rem;
}
.intro .role h2{
	font-weight: bold;
}
.picture{
	width: 90%;
}
.frame2{
	display:grid;
	grid-template-columns: 1fr 1fr;  
	margin: auto;
	column-gap: 2rem;
}
.frame2 > .picture{
	width: 100%;
}
.text{
	width: 70%;
	margin: 4rem auto;
}
h1{
	font-size: 4rem;
}
h2{
	font-size: 2rem;
}
h3{
	font-size: 1rem;
}
h4{
	font-size: 1.5rem;
	margin-bottom: 6px;
}
.text a{
	color: red;
	font-weight: 600;
}

@media only screen and (max-width:800px){
	.intro h1{
		width: 80%;
		font-size: 3rem;
	}
	.picture{
		width: 100%;
	}
	.text{
		width: 90%;
	}
}
@media only screen and (max-width:425px){
	.hero{
		height: 60vh;
	}
	.intro h1{
		font-size: 2rem;
	}
	.intro h2{
		font-size: 1rem;
	}
	.text{
		margin: 2rem auto;
	}
	.frame2{
		display: block;
	}
}