html {
	height: 100%;
}

body {
	font-family: Oswald, sans, sans-serif, helvetica, arial;
	font-size: 1.1rem;
	color: #fff;
	background-color: #ff526f;
	background-blend-mode: multiply;
	background-image: url('images/back.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	
	height: 100%;
	
	--topSize: 60px;
	--menuSize: 100px;
}

* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	scrollbar-color: #ff526fcc #0000;
	scrollbar-width: thin;
	
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
}

a, a:visited {
	color: #ff526f;
	text-decoration: none;
}

a:hover {
	color: #fc95a6;
	text-decoration: underline;
}

li {
	
}

li:before {
	content: "»";
	color: #fc95a6;
	padding-left: 16px;
	padding-right: 5px;
}

h1, h2, h3, h4, strong {
	display: inline;
	font-weight: 600;
	font-style: normal;
	color: #ff526f;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.7rem;
}

h4 {
	font-size: 1.3rem;
}

hr {
	border: 0;
	height: 2px;
	margin-bottom: 5px;
	background-image: linear-gradient(to right, #0000, #ff526f55, #ff526fff, #ff526fff, #ff526fff, #ff526fff, #ff526fff, #ff526f55, #0000);
}

.lightBlue {
	color: #fc95a6;
}

.kinkBlue {
	color: #ff526f;
}

.topBox {
	font-family: Michroma;
	font-size: 1.3rem;
	text-align: center;
}

/* --- Page elements */

#fullPage {
	display: flex;
	flex-flow: column nowrap;
	align-items: stretch;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	width: 100%;
	max-width: 800px;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
}

#topContainer {
	flex-grow: 1;
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	width: 100%;
	height: calc(var(--topSize));
	min-height: calc(var(--topSize));
	max-height: calc(var(--topSize));
	margin: 0px;
	margin-bottom: 5px;
	padding: 0px;
}

#pageContainer {
	display: flex;
	flex-flow: column nowrap;
	align-items: stretch;
	width: 100%;
	height: 100%;
	max-height: 100%;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

#mainContainerWrapper {
	flex-grow: 1000;
	height: 1px;
	padding: 10px;
	background: #111e;
	border: 3px solid #ff526faa;
	border-radius: 10px;
}

#mainContainer {
	height: calc(100%);
	max-height: calc(100%);
	overflow-y: scroll;
	overflow-x: hidden;
}

/* --- Top container */

#topMain {
	flex-grow: 100;
	
	background-image: url('images/logo.php?l=fc6289&r=fc235a&b=fff&h=e36282');
	background-size: auto calc(var(--topSize) * 0.9);
	background-repeat: no-repeat;
	background-position: center center;
	
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	height: 100%;
}

#topSpacer {
	flex-grow: 1000;
	
	height: calc(var(--topSize));
	min-height: calc(var(--topSize));
	max-height: calc(var(--topSize));
	
	background: none;
}

#backBox, #refreshBox {
	flex-grow: 1;
	
	display: none;
	text-align: center;
	font-size: 26px;
	
	width: calc(var(--topSize));
	min-width: calc(var(--topSize));
	max-width: calc(var(--topSize));
	height: calc(var(--topSize));
	min-height: calc(var(--topSize));
	max-height: calc(var(--topSize));
	line-height: calc(var(--topSize) - 4px);

	margin-right: 5px;
}

.targetBox {
	background: #111e;
	border: 3px solid #ff526faa;
	border-radius: 40px;
}

/* --- Small screens, e g smartphones */	
@media (max-width: 700px) {
	body {
		--menuSize: 50px;
	}
	
	.hideText {
		display: none;
	}
	
	#backBox, #refreshBox {
		display: inline-block;
	}
}