body
{
	/* Variables */
	--content-width: 840px;

	--color-text: #fff;
	--color-text-shadow: #fecf6d;

	--color-link: #f26c50;
	--color-link-shadow: #d34e34;

	--color-bg: rgb(255, 195, 87);
	--color-bg-light: #ffcd77;
	--color-bg-dark: #ffb73c;

	--color-discord-highlight: #7289DA;
	--color-discord-bg: #2C2F33;
	--color-discord-border: #23272A;


	/* Body Style */
	width: 100%;
	background-color: var(--color-bg);
	
	font-family: 'Fredoka One', cursive;

	overflow-y: scroll;

	display: flex;
	flex-direction: column;

	color: white;
	text-shadow: 0px 3px 0 var(--color-text-shadow);

	font-size: 22px;
}

/* ============== BASE STYLES ============== */
strong, b{ opacity: 1; }
i, em{ font-style: italic; }

.left{ float: left; }
.right{ float:right; }
.clear{ clear: both; }

.center{ text-align: center; }

h1{
	font-size: 48px;
	margin-bottom: 20px;
}

p{
	line-height: 120%;
	font-size: 22px;
	margin-bottom: 30px;
}

a
{
	color: var(--color-text);
	text-shadow: var(--color-link-shadow);
	text-decoration: none;
}

a:hover
{
	color: var(--color-link);
}

ul{ 
	line-height: 135%;
	padding-left: 10px;
	list-style-type: disc;
	font-size: 22px;
	margin-bottom: 30px;
}

hr{
	border: none;
	border-bottom: 3px dashed var(--color-text);
	margin: 50px 20px;
	opacity: 0.8;
}


/* ============== HEADER ============== */
header
{
	width: 100%;
	overflow: hidden;
	margin-bottom: 60px;
}

header #nav-bar
{
	max-width: var(--content-width);
	margin: auto;
	padding: 20px 0;
}

header #nav-bar #header-logo
{
	flex-grow: 1;

}

header #nav-bar a
{
	margin: 0 20px;
	color: var(--color-text);
}

header #nav-bar a:hover
{
	margin: 0 20px;
	color: var(--color-link);
}

/* ============== FOOTER ============== */
footer
{
	clear: both;

	text-align: center;
	padding: 10px 0;
	overflow: hidden;

	width: 100%;

	background-color: #303030;
	color: #cccccc;
	text-shadow: none;

	border-top: 20px solid var(--color-bg-dark);
}

footer p
{
	font-size: 16px;
	margin: 0;
	margin-bottom: 10px;
}

footer a
{
	color: #eeeeee;
}

#footer-copyright
{
	margin-bottom: 20px;
}

#footer-social
{
	margin-top: 40px;
	margin-bottom: 40px;
}

#footer-social img
{
	opacity: 0.5;
	width: 30px;
	height: 30px;
	margin: 0 10px;
	object-fit: cover;
}

#footer-social img:hover{
	opacity: 1;
}

/* ============== CONTENT ============== */
#content
{
	position: absolute;
	
	display: flex;
	flex-direction: column;
	
	width:100%;
	min-height: 100%;
	
	padding: 0;
	margin: 0;
}

.content-container
{
	width: var(--content-width);

	margin: auto;
	margin-bottom: 80px;
	
	padding: 30px;
	
	border-radius: 40px;

	background-color: #fcd686;
	box-shadow: 0 20px 0 #fecf6d;
}

.content-container:first-child{
	margin-top: -120px;
}

.content-container a{
	text-decoration: underline wavy;
}


.discord-box
{
	width: var(--content-width);
	height: 250px;
	
	margin: 20px auto 60px;

	padding: 10px;
	display:flex;

	background-color: var(--color-discord-bg);
	border: 10px solid var(--color-discord-border);
	border-radius: 35px;

	text-shadow: none;
}


.discord-box-inner{
	width: 260px;
	height:100%;
	padding: 20px;
	text-align: center;
}


.discord-box-inner p
{
	margin: 0;
	margin-top: 20px;
	margin-bottom: 40px;

	font-size: 24px;
	color: #fff;
	line-height: 150%;

	letter-spacing: 2px;
}

.discord-box-inner a
{
	display: block;
	padding: 10px;
	width: 100px;
	margin:auto;

	background-color: var(--color-discord-highlight);

	border-radius: 20px;
}
.discord-box-inner a:hover
{
	color: var(--color-discord-border);
}

.discord-box iframe
{
	margin-right: 10px;
	flex-grow: 1;
	border-radius: 20px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;

	border-radius: 20px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;

}


























#banner
{
	margin: 0;
	padding: 0;

	padding-top: 30px;
	padding-bottom: 80px;

	background-image: url("media/bg_clouds_blur.jpg");
	background-size: cover;
	background-position-x: 50%;
	background-position-y: 90%;

	border-top: 10px solid var(--color-bg-dark);
	border-bottom: 20px solid var(--color-bg-light);
}



/* LOGO AND ANIMATIONS -------------------------------------------------------------------------------------------------------------------------------------------------*/
#logo
{
	margin: auto;
	margin-top: 30px;
	margin-bottom: 50px;

	width: 390px;
	height: 241px;
	
	background-image: url(media/logo_splat.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;

	transform-origin: 50% 50%;

	animation-name: logoAnim; 
    animation-duration: 1.5s; 
    animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;

	transform: rotate(-2deg) translate(8px,0);
}

@keyframes logoAnim {
    0% {transform: rotate(-2deg) translate(8px,0)}
    50% {transform: rotate(2deg) translate(-8px,0)}
    100% {transform: rotate(-2deg) translate(8px,0)}
}

#logo img
{
	position: absolute;
	width: 100%;
	height: 100%;
}

#logoDotTop, #logoDotBottom
{
    animation-duration: 1.5s; 
    animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	animation-delay: 0.4s;
}

#logoDotTop{ animation-name: logoDotTopAnim; animation-delay: 0.35s; transform: translate(-2px,3px); }
@keyframes logoDotTopAnim {
    0% {transform: translate(-2px,3px)}
    50% {transform: translate(2px,-3px)}
    100% {transform: translate(-2px,3px)}
}

#logoDotBottom{animation-name: logoDotBottomAnim; transform: translate(2px,2px); }
@keyframes logoDotBottomAnim {
    0% {transform: translate(2px,2px)}
    50% {transform: translate(-2px,-2px)}
    100% {transform: translate(2px,2px)}
}

#logo .glyph
{
	animation-name: logoGlyphAnim; 
    animation-duration: 1.5s; 
    animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	animation-delay: 0.2s;
	transform: rotate(-1deg) translate(-2px,0);
}

@keyframes logoGlyphAnim {
    0% {transform: rotate(-1deg) translate(-2px,0) }
    50% {transform: rotate(1deg) translate(2px,0)}
    100% {transform: rotate(-1deg) translate(-2px,0)}
}

#logoGlyphDevice{ transform-origin: 23% 50%;}

#logoGlyphTopN{ transform-origin: 51% 34%; }
#logoGlyphTopO{ transform-origin: 67% 34%; }
#logoGlyphTopA{ transform-origin: 85% 34%; }

#logoGlyphBottomN{ transform-origin: 51% 66%; }
#logoGlyphBottomO{ transform-origin: 67% 66%; }
#logoGlyphBottomA{ transform-origin: 85% 66%; }

/* STORE BADGES -------------------------------------------------------------------------------------------------------------------------------------------------*/
#storeBadges
{
	height: 70px;

	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;

	text-align: center;
}

#storeBadges img
{
	margin-left: 20px;
	margin-right: 20px;

	height: 100%;
}

/* CONTENT ---------------------------------------------------------------------------------------------------------------------------------------------*/
#gifs
{
	margin: auto;
	text-align: center;
	margin-bottom: 50px;
}

#gifs img
{
	width: 200px;
	height: 200px;

	object-fit: cover;

	margin-left: 10px;
	margin-right: 10px;
	
	border-radius: 20px;
	background-color: white;
}

#screenshots
{
	margin: auto;
	text-align: center;
	margin-bottom: 50px;
}

#screenshots img
{
	width: 150px;
	height: 270px;

	object-fit: cover;

	margin-left: 10px;
	margin-right: 10px;
	
	border-radius: 20px;
	background-color: white;
}

#video
{
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;

	width: 800px;
	height: 375px;

	background-image: url("media/video_preview.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;

	text-align: center;

	color: rgba(49, 140, 110, 0.329);
	font-size: 28px;
}

#videoFrame
{
	margin-left: 20px;
	border-radius: 30px;
}

/* BARON DIALOGUE ---------------------------------------------------------------------------------------------------------------------------------------------*/
#dialogue
{
	margin: auto;
	margin-bottom: 50px;

	width: var(--content-width);

	background-image: url("media/gifs/baron_angry.gif");
	background-position: top right;
	background-repeat: no-repeat;
	background-size: contain;
}

#dialogueText
{
	margin-right: 320px;
}

#dialogueText p
{
	border-radius: 40px;
	background-color: #F0E9D6;
	box-shadow: 0 3px 0 #ffb73c;

	margin-bottom: 10px;

	padding: 20px;

	
	color: #4B4B4B;
	font-size: 14px;
	text-shadow: 0px 2px 0 #E3DCCA;

	width: fit-content;
}

#dialogueText p:first-child
{
	padding: 30px;
	margin-top: 0px;
	font-size: 24px;
}

#dialogueText p:last-child
{
	margin-bottom: 0px;
	font-size: 24px;
}


/* INFO TEXT ---------------------------------------------------------------------------------------------------------------------------------------------*/
#info p
{
	margin-top: 30px;
	margin-bottom: 30px;
}

#info p:first-child{ margin-top: 0px; }
#info p:last-child{ margin-bottom: 0px; }

#info strong
{
	font-weight: normal;
	color: #f26c50;
}

#info h1
{
	font-weight: normal;
	text-align: center;
	margin-bottom: 40px;
}

/* PRESSKIT ---------------------------------------------------------------------------------------------------------------------------------------------*/
#presskitDownload
{
	margin:auto;
	margin-top: 30px;
	margin-bottom: 30px;

	display: block;
	
	width: fit-content;
	padding: 20px 30px;

	background-color: #f26c4f;
	
	border-radius: 40px;
	box-shadow: 0 10px 0 #d04d31;

	color: #FFFFFF;
	font-size: 32px;
	text-align: center;
	text-shadow: none;
}

#presskitDownload:hover
{
	background-color: #ffc258;
	box-shadow: 0 10px 0 #ffb73c;
}

/* FAQ ---------------------------------------------------------------------------------------------------------------------------------------------*/
.faqQuestion
{
	font-size: 32px;
	margin-top: 50px;
	margin-bottom: 10px;
}

.faqAnswer
{
	font-size: 18px;
}