﻿body {
	font-size: 16px;
	font-family: Walkway, arial, sans-serif;
	line-height: 1.5;
}

.container {
  position: relative
}

-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

#navbar {
	text-align: center;
	z-index: 98;
	margin: auto;
	position: relative;
	color: white;
	max-width: auto;
	opacity:0;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	-webkit-animation-duration:4s;
	-moz-animation-duration:4s;
	animation-duration:4s;
}

#content {
	text-align: center;
	z-index: 98;
	margin: auto;
	margin-top: 9%;
	position: relative;
	color: white;
	max-width: 400px;
	opacity:0;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	-webkit-animation-duration:4s;
	-moz-animation-duration:4s;
	animation-duration:4s;
}

#contentname {
	text-align: center;
	z-index: 98;
	margin: auto;
	margin-top: 4%;
	position: relative;
	color: white;
	max-width: auto;
	opacity:0;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	-webkit-animation-duration:4s;
	-moz-animation-duration:4s;
	animation-duration:4s;
}

i  {
	background-color: rgba(255, 255, 255, 0.2);
	height: 80px;
	-moz-border-radius: 56px;
	-webkit-border-radius: 56px;
	width: 80px;
	padding: 16px;
	margin: 20px;
	animation: blinker 0.8s linear infinite;
	animation-delay: 26s;
}

i:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.headline {
	font-size: 7em;
	line-height: 1em;
	color: rgba(255, 255, 255, 0.6);
	width: 400;
	height: 65px;
	animation: blinker 0.8s linear infinite;
	animation-delay: 3400000s;
	margin: auto;
	margin-bottom: 120px;
}

@keyframes blinker {  
  50% { opacity: 0; }
}

.spacer {
	margin-top: -90px;
	border-color: rgba(255, 255, 255, 0.4);
	border-width: 1px;
	border-style: solid;
}

/* Menü Navbar */

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 7px 16px;
    text-decoration: none;
}

 /* The side navigation menu */
.sidenav {
    height: 84%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 5%;
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

