﻿/* root styles */

:root {
	--page_bg: #E0CEBD url(../images/site/light-bg.jpg) no-repeat center center fixed;

	--logo: url(../images/site/forge.svg) no-repeat center center;

	--font: "Montserrat", serif;
	--font_colour: #374045;
	--font_weight: 400;

	--heading_font: "SilkRemingtonProSix", serif;
	--heading_colour: #374045;
	--heading_weight: 700;

	--link_colour: #374045;
	--link_hover: #374045;

	--button_bg: #A5A680;
	--button_colour: #fff;
	--button_bg_hover: #fff;
	--button_colour_hover: #A5A680;

}

h1, h2 {
	font-size: 160% !important;
}

#top_bar {
	display: none;
}

#page_content {
	height: 100vh;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 50px;
}

@media(max-width: 922px) {
	#page_content {
		display: block;
	}

	#col_1 {
		margin: 0 0 50px 0 !important;
	}
}

#col_1 {
	margin: 0;
	flex-basis: calc(50vw - 50px);
}

#col_1 * {
	word-break: break-all;
}

#col_2 {
	margin: 0;
	flex-basis: calc(50vw - 50px);
}

#footer {
	display: none;
}