@font-face {
	font-family: 'Circe';
	src: url(fonts/Circe-Regular.woff);
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Circe';
	src: url(fonts/Circe-Bold.woff);
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Circe';
	src: url(fonts/Circe-Light.woff);
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Circe';
	src: url(fonts/Circe-ExtraBold.woff);
	font-weight: 900;
	font-style: normal;
}

html {
	font-family: 'Circe';
	font-size: 16px;
}

body {
	background: black url("../img/back.jpg") no-repeat;
	background-position: center calc(0% - 40px);

	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;

	margin: 0;
	padding: 0;
}

h1, h2 {
	font-weight: 600;
	text-transform: uppercase;
}

header {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 90px;
	background-color: rgba(20, 20, 20, 0.5);
}

header h1 {
	color: #ce691f;
	font-size: 24pt;
}

.head {
	display: flex;
	justify-content: space-between;
	width: var(--main-width);
}

main {
	margin-top: 350px;
	background:
			linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 100%),
			linear-gradient(to bottom, var(--main-back-color) 0%, var(--main-back-color) 80%);
	height: 100%;
	width: 100%;

	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

.columns {
	width: var(--main-width);

	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

nav {
	margin: 2em 0;
	display: flex;
	flex-direction: column;
	flex-basis: 25%;
}

nav h2 {
	color: #ce691f;
	font-size: 22pt;
}

nav a {
	font-size: 1.4em;
	line-height: 1.8em;
	color: #dec491;
}

nav a:hover {
	text-decoration-color: #ce691f;
 }


footer {
	margin-top: auto;
	display: flex;
	justify-content: center;
	flex-grow: 1;
	width: 100%;
	height: 50px;
	background-color: black;
	border-top: 1px solid #ce691f;
}

footer div {
	width: var(--main-width);
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #dec491;
}

@media all and (max-width: 1200px) {
	.columns {
		flex-wrap: wrap;
	}

	nav {
		flex-basis: 35%;
	}
}

@media all and (max-width: 600px) {

	header {
		height: auto;
		background-color: var(--main-back-color);
		border-bottom:  1px solid #ce691f;
	}

	header h1 {
		color: #ce691f;
		font-size: 16pt;
	}

	main {
		margin-top: 0;
	}

	nav {
		flex-basis: 100%;
		margin: 1em 0;
	}

	nav h2 {
		font-size: 16pt;
	}

	footer {
		height: auto;
	}

	footer div {
		flex-wrap: wrap;
	}

	footer div p {
		margin: 8px 0;
	}
}
