@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300);
@import url('https://fonts.googleapis.com/css?family=Amatic+SC');
@import url('https://fonts.googleapis.com/css?family=Krona+One');
@import url('https://fonts.googleapis.com/css?family=Comfortaa');


body
{
	margin: 0;
	font-family: 'Amatic SC', cursive;
	white-space: nowrap;
}

.background
{
	display: block;
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;

}

.container
{
	position: relative;
	color: white;
}

.nav
{
	list-style: none;
	size: stretch, cover;
	position: absolute;
	top: 0;
	padding-left: 20px;
	padding-bottom: 0;
	font-weight: bold;
	left: 0px;


	  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;

    -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

ul
{
	margin-top: 0px;
	margin-left: 0px;
}

li
{
	display: inline-block;
}

a
{
	color: white;
	text-decoration: none;
	font-size: 33px;
	padding-left: 200px;

}

a:hover
{
	color: #c1c1c1;
}

.title
{
	color: white;
	font-size: 70px;
	padding-right: 0px;
}


.fadein
{
	top: 8px;
	margin-top: 65px;
	position: absolute;
	color: yellow;
	font-size: 100px;
	font-family: 'Comfortaa', cursive;


  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;

    -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/* HOME PAGE*/
/************/


/* make keyframes that tell the start state and the end state of our object */
@-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; } }
