*,*::after,*::before {
	box-sizing: border-box;
}
html {
	background: #fff;
}
body {
	font-family: Arial, sans-serif;
	min-height: 100vh;
	color: #57585c;
}
a {
	text-decoration: none;
	color: #070707;
	outline: none;
}
a:hover {
	color: #09F330;
	outline: none;
}
a:focus, a:active  {
	color: #ffffff;
	outline: none;
}
h1{
	font-size:3em
}
h2{
	font-size:2em
}
text{
	font-size: 1.5em; /* 14px/16=0.875em */
  }
main {
	position: relative;
	width: 100%;
}
.mytext{
	font-size: 1.5em; /* 14px/16=0.875em */
}
.mytext-white {
	font-size: 1.5em; /* 14px/16=0.875em */
	color: #fff;
}
.mytext-black {
	font-size: 1.5em;
	color: #000000;
}
.mytext-red {
	font-size: 1.5em; /* 14px/16=0.875em */
	color: rgb(240, 0, 0);
}
.mytext-center-red{
	font-weight: bold;
	font-size:2em;
	color:rgb(240, 0, 0);
	text-align: center;
}
.mytext-bold-black {
	font-weight: bold;
	font-size: 2em;
	color: #000000;
}
.mytext-bold {
	font-weight: bold;
	font-size: 2em;
	color: #000000;
}
/* The navbar */
.mytopnav {
	overflow: hidden;
	background-color: #F00000;
}
.mylinktext {
	font-weight: bold;
	font-size: 2em;
	color: #ffffff;
}
.mylinktext-nav {
	font-weight: bold;
	font-size: 2em;
	color: #ffffff;
}
.titles {
	color: rgb(240, 0, 0);
	flex-direction: column;
	text-align: center;
	text-shadow: 3px 3px 5px #000000;
}
.titles-top{
	position: fixed;
	top:50;
	color:#fff;
	flex-direction: column;
	text-align: center;
	text-shadow: 3px 3px 5px #000000;
  }

.content {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 80vh;
	margin: 0 auto;
	height: auto;
}
.fixed {
	display: block;
	width: 100%;
	min-height: 0;
	padding: 1.5em;
}
.top-header {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* Top Navigation Style */
.links {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 1em 0 0;
	text-align: center;
	white-space: nowrap;
}
.links a{
	margin:8px
}
.reveal-content {
	/*image from https://unsplash.com/photos/krV5aS4jDjA */
	background-image: url(../img/bild0.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.reveal-content-2{
	/*image from https://unsplash.com/photos/krV5aS4jDjA */
	background-image: url(../img/bild6.png);
	background-size: cover;
	background-repeat: no-repeat;
}
.group-overlays {
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
}

.overlay:nth-of-type(1) {
	fill: #fff;
	fill-opacity:.4
}
.overlay:nth-of-type(2) {
	fill: #eee;
	fill-opacity:.6
}
.overlay:nth-of-type(3) {
	fill: #ddd;
	fill-opacity:.8
}
.overlay:nth-of-type(4) {
	fill: #ccc;
}
div.smcol25{
	height: 25px;
}
div.smcol50{
	height: 50px;
}
div.smcol280{
	height: 280px;
}

@media screen and (max-width: 55em) {
	html,body {
		overflow-x: hidden;
		width: 100vw;
		height: 100%;
	}
	h1{
		font-size:1.8em
	}
	h2{
		font-size:1.3em
	}
}

#pot {
	/*bottom: 15%;*/
	position: absolute;
	animation: linear infinite;
	animation-name: run;
	animation-duration: 10s;
  }
  @keyframes run {
	0% {
	  left: 0;
	}
	50% {
	  left: calc(100% - 100px);
	 }
	100% {
	  left: 0;
	}
  }
