* {
	margin: 0;
	padding: 0;
	line-height: 1.5em;
}

body {
	height: 0;
}

body::-webkit-scrollbar {
    display: none;
}

#container{
	background: linear-gradient(to left, #134a6d, #145f36,#701818 );
}

#container2{
	width: 100%;
	height: 100vh;
	background: linear-gradient(to left, #134a6d, #145f36,#701818 );
}

#innhold{
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	width: 65%;
	height: 80%;
	margin: auto;
}

h1{
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	color: #c7c6c6;
	text-align: center;
	font-size: 240%;
}

p{
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	color: #c7c6c6;
	text-align: center;
	line-height: 1.5em;
	padding: 5px;
	font-size: 25px;
}

#kontakt{
    width: 100%;
    margin: auto;
	font-weight: bold;
    position: fixed;
	font-family: sans-serif;
	text-align: center;
	bottom: 0;
	padding-top: 10px;
}

#kontakt ul{
	padding-top: 10px;
    position: relative;
    color: rgb(228, 224, 224);
}

#kontakt ul li{
    display: inline;
	margin: 10px;
}

.banner-text {
	width: 100%;
	position: relative;
	z-index: 1;
    text-align: center;
}
.banner-text ul {
	height: 50px;
    margin: auto;
}
.banner-text ul li {
	display: inline-block;
	padding: 30px 10px;
	text-transform: uppercase;
	color: #fff;
	font-size: 30px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
}

.banner-text ul li a{
    text-decoration: none;
    color: #eee5e5;
}

.banner-text ul li a:hover {
	color: rgb(185, 112, 112);
}

.banner-text h2 {
	text-align: center;
	color: #F16667;
	font-size: 50px;
    padding-top: 200px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin: auto;
}

.logo{
    margin: auto;
}

.animation-area {
	width: 100%;
	height: 23.8vh;
	
}
.box-area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.box-area li {
	position: absolute;
	display: block;
	list-style: none;
	width: 25px;
	height: 25px;
	background: rgba(255, 255, 255, 0.3);
	animation: animate 20s linear infinite;
	bottom: -150px;
}
.box-area li:nth-child(1) {
	left: 86%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}
.box-area li:nth-child(2) {
	left: 12%;
	width: 30px;
	height: 30px;
	animation-delay: 1.5s;
	animation-duration: 10s;
}
.box-area li:nth-child(3) {
	left: 70%;
	width: 100px;
	height: 100px;
	animation-delay: 5.5s;
}
.box-area li:nth-child(4) {
	left: 42%;
	width: 150px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 15s;
}
.box-area li:nth-child(5) {
	left: 65%;
	width: 40px;
	height: 40px;
	animation-delay: 0s;
}
.box-area li:nth-child(6) {
	left: 15%;
	width: 110px;
	height: 110px;
	animation-delay: 3.5s;
}
@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateY(-800px) rotate(360deg);
		opacity: 0;
	}
}
