@font-face {
    font-family: 'roboto';
    src: url('fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'courgette';
    src: url('fonts/courgette-regular-webfont.woff2') format('woff2'),
         url('fonts/courgette-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'AG';
    font-style: normal;
    font-weight: normal;
    src: local('Avant Garde Book BT'), url('fonts/AVGARDN_2.woff') format('woff');
}
@font-face {
    font-family: 'AG Demi';
    font-style: normal;
    font-weight: normal;
    src: local('Avant Garde Demi BT'), url('fonts/AVGARDD_2.woff') format('woff');
}
@font-face {
    font-family: 'AG Oblique';
    font-style: normal;
    font-weight: normal;
    src: local('Avant Garde Demi Oblique BT'), url('fonts/AVGARDDO_2.woff') format('woff');
}

body {
	background-color: black;
	font-family: roboto;
}

h1 {
	color: white;
	font-family: AG;
	letter-spacing: 1.5px;
}
h2 {
	color: white;
	font-family: AG Demi;
	margin-bottom: 0;
}
p {
	color: white;
	font-family: roboto;
}
a {
    color: white;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

header {
	width: 90%;
	margin: 0 auto;
}
header h1 {
	padding-right: 20%;
}
header h1:before {
	content: "";
	position: absolute;
	margin-top: 40px;
	display: inline-block;
	width: 70px;
	height: 2px;
	background-color: #e9204f;
}
header span {
	padding-right: 25px;
}
header h1, header p{
	display: inline-block;
}
@media screen and (max-width: 765px) {
	header {
		width: 97%;
		margin: 0 auto;
	}
	header h1 {
		padding-right: 0px;
		font-size: 1.3em;
	}
	header h1:before {
		margin-top: 1.3em;
	}
	header span {
		padding-right: 25px;
	}
	header h1, header p{
		display: block;
	}
}


div.header_wrapper 
{
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	margin: 0 auto;
	padding-left: 20%;
	text-align: left;
	position: relative;
	font-size: 2em;
}
@media screen and (max-width: 765px) {
	div.header_wrapper {
		padding-left: 7%;
		font-size: 1em;
	}
}


article.construction_wrapper {
	color: white;
	font-family: roboto;
	text-align: center;
	font-size: 1em;
	margin-top: 50px;
	display: flex;
	justify-content: center;
}
article.construction_wrapper h3 {
	border: 2px solid #e9204f;
	display: inline-block;
	padding: 10px;
	margin: 0;
}