:root {
    --color-main: #ccffd3;
    --color-background: #0e520c;

	--color-accent-1: #00b05b;
	--color-accent-2: #c22974;

	--font-text: main-font, sans-serif;
	--font-title: title-font, sans-serif;
}

.noselect {
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	    user-select: none;
}
.nodrag {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

@font-face {
	font-family: main-font;
	src: url(fonts/FuzzyBubbles-Bold.ttf);
}
@font-face {
	font-family: title-font;
	/*src: url(fonts/JosefinSans-VariableFont_wght.ttf);
	src: url(fonts/VarelaRound-Regular.ttf);*/
	src: url(fonts/Righteous-Regular.ttf);
	/*src: url(fonts/RussoOne-Regular.ttf);*/
}

html, body {
	margin: 0px;
	padding: 0px;
}
body {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 100vh;

	color: var(--color-main);
	background-color: var(--color-background);
	background-image: radial-gradient(ellipse at 50% 97%, rgba(8,24,8,1) 0%, rgba(9,60,8,1) 70%, rgba(10,73,9,1) 100%);
	background-repeat: no-repeat;
	background-position: 35% 90%;
	background-size: 300% 100%;
	font-family: var(--font-text);
}
body header {
	flex: 0 0 auto;
}
body .content {
	flex: 1 1 auto;
}
body .content > .title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
    text-align: center;
}
body .content > .title * {
    max-width: 100vw;
    overflow: hidden;
}
body .content > .title .background, body .content > .title .overlay {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
}
body .content > .title .background {
    background-image: url(../images/content/banner.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    filter: blur(5px);
}
body .content > .title .overlay {
    background-color: rgba(5, 14, 5, 0.75);
}

body .content > .title h2, 
body .content > .title > img, 
body .content > .title > p,
body .content > .title .socialmedia, 
body .content > .title span, 
body .content > .title i {
    filter: drop-shadow(5px 5px 3px rgba(0,0,0, 0.5));
    z-index: 2;
}
body .content > .title h2 {
    margin: 0.5em 0.5em 0.25em;
    text-align: center;
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: normal;
    letter-spacing: 0.075em;
}
body .content > .title > p {
    width: 35ch;
    max-width: 100%;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 0.05em;
}

body .content > .title .socialmedia {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
body .content > .title .socialmedia > a {
    display: block;
    margin: 0.5em;
    padding: 0px;
    opacity: 0.8;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
body .content > .title .socialmedia > a:hover, body .content > .title .socialmedia > a:focus {
    opacity: 0.9;
    transform: scale(1.1) translateY(-1px);
}

body .content > .title > span {
    display: block;
    display: none;
    width: 800px;
    max-width: 90%;
    margin: 20px auto;
    border-style: solid;
    border-width: 2px;
    border-color: var(--color-accent-1);
}
body .content > .title i {
    position: absolute;
    bottom: 2px;
    opacity: 0.8;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.075em;
    text-align: center;
}
body .content > .title i small {
    display: block;
    margin-top: 1.25em;
    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 0.6rem;
    text-align: center;
    color: #eaeaea;
    text-align: center;
    z-index: 2;
}

