@font-face {
  font-family: 'Roboto';
  src: url('Roboto-Thin.ttf');
}

body {
	color: #fff;
  background-color: #4b4b4b;
  text-align: center;
  font-size: 9vw;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
	margin-top: 20vh;
}
a {
	color: #999;
	text-decoration: none;
}

p.eb {
    animation: einblenden 4s;
    -moz-animation: einblenden 4s; /* Für Firefox */
    -webkit-animation: einblenden 4s; /* Für Safari und Chrome */
    -o-animation: einblenden 4s; /* Für Opera */
}


@keyframes einblenden {
    from { opacity:0; }
    to { opacity:1; }
}

@-moz-keyframes einblenden { /* Für Firefox */
    from { opacity:0; }
    to { opacity:1; }
}

@-webkit-keyframes einblenden { /* Für Safari und Chrome */
    from { opacity:0; }
    to { opacity:1; }
}

@-o-keyframes einblenden { /* Für Opera */
    from { opacity:0; }
    to { opacity:1; }
}
