@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('ubuntu-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('ubuntu-v14-latin-regular.woff') format('woff');
}

/*Navigation
-------------------------------------------------------------------*/
body{
	
    font-family: 'Ubuntu';	
    font-size: 16px;
    color: #FFFFF0;
    text-align: justify;
	background: #000000;

    width: 320px;
    height:420px;
    margin-top: 35px;
    margin-left:35px;
    
}  

/* Überschriften 
-------------------------------------------------------------------*/

h1 { 
    font-family: 'Ubuntu';
    margin-right: auto;
    margin-left: 3px;
	font-size: 11px;
    color: #FFD700;
    line-height: 0.5;
    line-height: normal;
}

h2 {    
	font-family: "Arial Narrow", Arial, sans-serif; 	
    font-size: 62px;
    line-height: 0.5em;
    line-height: normal;
    color: #8B008B;
	font-style: normal;
	font-variant: normal;
	font-weight: 500;
	text-align: left;
}

h3 {
   font-family: 'Ubuntu';
	font-size: 18px;
        color: #FFFFF0;
}

h4 {
	font-family: 'Ubuntu';
	font-size: 20px;
        color: #FFFFF0;
}

h5 {
	font-family: 'Ubuntu';
	font-size: 20px;
        color: #008080;
}

h6 {
	font-family: 'Ubuntu';
	font-size: 20px;
        color: #7FFF00;
}
  

/* Structure 
-------------------------------------------------------------------*/

#box{
    margin-top: -720px; 
    margin-left: 35px;
    text-align: left;
    position: absolute;    
    background-color: transparent; overall width 818px including 2*3px padding and 2*1px border    
}

#site{
    position: absolute; 
    /*top: 215px; 
    left: 670px; 
    width: 510px; 
    height: 225px;*/ 
    background-color: transparent;
    text-align:left;
} 

#test{
    font-size: 16px;
    text-align: left;
    animation: fadein 4s;
    -moz-animation: fadein 4s; /* Firefox */
    -webkit-animation: fadein 4s; /* Safari and Chrome */
    -o-animation: fadein 4s; /* Opera */
} 

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:6;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:6;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:6;
    }
}

}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 6;
    }
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}


