.videobg {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    pointer-events: none;
}

.container {
	height: 100vh;
	overflow: hidden;
	position: relative;
	background: rgba(146, 137, 183, 0.5);
}

.logo-img {
	position: absolute;
	left: 50%;
	margin: -134px 0 0 -200px;
	width: 400px;
	top: 50%;
}

.logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0 0 0 0;
    width: 600px;
    margin: 0 0 0 -300px;
    text-align: center;
}

h1.logo-hl {

    animation: einblenden 25.5s;
    -moz-animation: einblenden 25.5s; /* Für Firefox */
    -webkit-animation: einblenden 25.5s; /* Für Safari und Chrome */
    -o-animation: einblenden 25.5s; /* 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; }
}