/*@font-face {
    font-family: 'MyRubikLight';
    src: url('/Rubik-Light.eot');
    src: url('/Rubik-Light.eot?#iefix') format('embedded-opentype'),
         url('/Rubik-Light.woff') format('woff'),
         url('/Rubik-Light.ttf')  format('truetype'),
         url('/Rubik-Light.svg#Rubik-Light') format('svg');
	font-weight: 300;
    font-style: normal;
    font-display: swap;
} */

/* @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@200;400&display=swap'); */

/* CSS Document */
html {
	font-size: 21px;
	background-color: black;
	color: white;
	text-shadow: 0 0 10px black;
	font-family: 'Rubik', Arial, sans-serif;
	font-weight: 200;
	-moz-hyphens: manual;
	-o-hyphens: manual;
	-webkit-hyphens: manual;
	-ms-hyphens: manual;
	hyphens: manual;
}

h1 {
	font-size: 200%;
}

h2 {
	font-size: 150%;
}

h3 {
	font-size: 125%;
}

h4 {
	font-size: 100%;
}

body {
	margin: 0;
	width: 100%;
	min-height: calc(100vh - 10px);
	overflow: auto;
	display: block;
	position: relative;
}

#fullscreenBody {
	margin: 0;
	min-height: 100%;
	height: 100%;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	border-radius: 0 0 30px 30px;
	overflow: visible;
	box-sizing: border-box;
	z-index: 15;
	box-shadow: 0 0 10px black;
	padding: 10px 0;
	padding-left: 20%;
}

nav a {
	text-decoration: none;
}

footer {
	display: block;
	position: absolute;
	bottom: 0px;
	background-color: darkred;
	border-radius: 30px 30px 0 0;
	text-align: center;

	padding: 10px 0 15px 0;
	color: white;
	margin-top: 10px;
	width: 100%;
}

a {
	transition: 0.2s ease;
	color: white;
	text-decoration-color: darkgray;
}

a:link {
	color: white;
	background-color: transparent;
	text-decoration: underline;
}

a:visited {
	color: white;
	background-color: transparent;
	text-decoration: underline;
}

a:hover {
	color: grey;
	background-color: transparent;
	text-decoration: underline;
}

a:active {
	color: grey;
	background-color: transparent;
	text-decoration: underline;
}



span {
	margin-top: -150px;
	padding-bottom: 150px;
	display: block;
}



.badge {
	width: 40%;
	max-width: 250px;
	min-width: 180px;
	border-radius: 5px;
}


@media (max-width : 1300px) {

	.IntroText,
	.AppIntroText,
	.TextIntroText {
		padding-top: 130px;
	}
}

@media (max-width : 900px) {
	html {
		font-size: 19px;
	}

	.IntroText,
	.AppIntroText,
	.TextIntroText {

		padding-top: 90px;


	}
}

@media (max-width : 700px) {
	html {
		font-size: 17px;
	}

	footer {
		box-sizing: border-box;
		padding: 10px 15px;
		text-align: right;
	}

	nav {
		padding-left: 30%;
	}

	#LogoLink .big {
		width: 18%;
		min-width: 18%;
	}

	.logo,
	.icon,
	.big {
		border-radius: 4px;
	}

	.AppBox,
	.Intro {
		border-radius: 15px;
	}

	nav {
		border-radius: 0 0 15px 15px;
	}

	footer {
		border-radius: 15px 15px 0 0;
	}

	.more {
		overflow: auto;
		position: static;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		margin: 20px 0;
	}

	.IntroText,
	.AppIntroText,
	.TextIntroText {
		margin: 0;
		padding-top: 60px;
		position: static;
		width: 100%;
	}
}

@media (max-width : 550px) {

	.logo,
	.icon,
	.big {
		border-radius: 3px;
	}

	.BackgroundImage {
		padding: 0 15px;
		box-sizing: border-box;
	}
}

@media (max-width : 400px) {
	html {
		font-size: 16px;
	}

	.IntroText,
	.AppIntroText,
	.TextIntroText {
		padding-top: 45px;
	}
}