@font-face {
  font-family: OpenSans;
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype"),
      url("../fonts/OpenSans-Regular.woff") format("woff"),
      url("../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: OpenSans;
  src: url("../fonts/OpenSans-Medium.ttf") format("truetype"),
      url("../fonts/OpenSans-Medium.woff") format("woff"),
      url("../fonts/OpenSans-Medium.woff2") format("woff2");
  font-weight: 500;
}

@font-face {
  font-family: OpenSans;
  src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype"),
      url("../fonts/OpenSans-SemiBold.woff") format("woff"),
      url("../fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
}

@font-face {
  font-family: OpenSans;
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype"),
      url("../fonts/OpenSans-Bold.woff") format("woff"),
      url("../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: OpenSans;
  src: url("../fonts/OpenSans-ExtraBold.ttf") format("truetype"),
      url("../fonts/OpenSans-ExtraBold.woff") format("woff"),
      url("../fonts/OpenSans-ExtraBold.woff2") format("woff2");
  font-weight: 900;
}


* {
	box-sizing: border-box;
}


html {
  overflow-y: scroll;
	height: 100%;
	font-size: 16px;
}

body {
	margin: 0;
  font-family: 'OpenSans', sans-serif;
	font-size: 1rem;
	font-weight: 400;
  background-color: #0d0d0d;
	color: #ffffff;
	background-image: url(../images/background.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#main_header {
  background-color: #0d0d0d;
	height: 100px;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 10;
}


#header {
	width: 1050px;
	height: 100%;
  background-image: url(../images/logo.png);
	background-repeat: no-repeat;
  background-position: 0.6rem center;
  background-size: 80px auto;
	padding: 0 0.6rem;
	margin-left: auto;
	margin-right: auto;
  background-color: transparent;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}


#navi_area {
	padding-bottom: 0.5rem;
}

#navi_area a {
	text-align: center;
	background-color: transparent;
	color: #fff;
	font-size: 0.9rem;
  font-weight: 500;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none;
}


footer {
	background-color: #1c1c1c;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 600;
	width: 100%;
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 10;
}

footer .container {
	width: 1050px;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem 0.6rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


#content {
	width: 900px;
  margin: 200px auto 4rem auto;
  background-color: #0d0d0d;
  padding: 2rem;
}


#content .section {
  line-height: 1.8;
  padding-bottom: 2rem;
}

#content .highlighted {
	color: #F8C25B;
	font-weight: 600;
	font-size: 1.1rem;
}

#content .small {
	font-weight: 600;
	font-size: 0.9rem;
}




@media screen and (max-width: 1050px) {

	#header {
		width: 100%;
	}

	footer .container {
		width: 100%;
	}

}



@media screen and (max-width: 900px) {

	#content {
		width: 100%;
	}

}


