/* all.css */

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

@font-face {
    font-family: 'Bernadette Rough';
    src: url('/fonts/BernadetteRough.woff2') format('woff2'),
        url('/fonts/BernadetteRough.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
	/* background-color: rgba(50,100,250,0.05); */
	/* font-family: Helvetica, sans-serif; */
    font-family: Georgia, serif;
}

html, body {
	width: 100%;
    height: 100%;
	margin: 0;
	padding: 0;
    min-width: 300px;
}

html {
    /* background: rgb(155,124,98) url('/img/background_gg_black.svg') repeat-y center -400px; */
    background: rgb(61, 43, 31) url('/img/background_gg_rgb.svg') repeat-y center -400px; 
    background-size: 1639px 1751px;
    overflow-y: scroll;
}

@media screen and (max-width: 850px) {
	html {
	    background: none;
        background-color: rgb(61, 43, 31);
        overflow-y: auto;
	}
}

body > div {
	width: 710px;
	padding: 20px 50px;
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 0 50px black;
    background-color: rgb(254, 249, 231);
}

@media screen and (max-width: 850px) {
	body > div {
		width: auto;
		padding: 20px 30px;
		margin-top: 0;
		margin-bottom: 0;
		margin-left: 0;
		margin-right: 0;
		box-shadow: none;
	}
}

body > div > header {
	text-align: center;
	margin-bottom: 50px;
}

body > div > footer {
	text-align: center;
	margin-top: 20px;
}

h1 {
	font-family: 'PlainGermanica', Georgia, serif;
	font-weight: normal;
	font-style: normal;
    font-size: 255%;
    margin-top: 0px;
}

article {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}

article > p.column {
	column-count: 2;
    column-gap: 40px;
	text-align: justify;
	text-justify: inter-character;
}
@media screen and (max-width: 500px) {
	article > p.column {
		column-count: 1;
		text-align: justify;
		text-justify: inter-character;
	}
}

aside {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}

aside > header > h2 {
    font-family: 'Bernadette Rough', 'Brush Script MT', cursive;
    font-weight: normal;
    font-style: normal;
    transform: rotate(-5.25deg);
}

aside > p.column {
	column-count: 2;
    column-gap: 40px;
	text-align: justify;
	text-justify: inter-character;
}
@media screen and (max-width: 500px) {
	aside > p.column {
		column-count: 1;
		text-align: justify;
		text-justify: inter-character;
	}
}

#logo {
	width: 85px;
    margin: 50px 0;
}

nav {
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 850px) {
	nav {
		padding-top: 20px;
		display: inline-block;
		justify-content: auto;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
}

nav > a {
	text-decoration: none;
	color: black;
	display: inline-block;
	padding: 0 10px;
}

nav > a:hover, nav > a.current {
	text-decoration: underline;
}