* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    overflow: hidden;
}

canvas {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.caps {
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: as 8s linear infinite;
}

.caps img {
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes as {
    0% {
        opacity: 0;
    }
    10% {
        opacity: .3;
    }
    20% {
        opacity: .1;
    }
    30% {
        opacity: .5;
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: .8;
    }
    55% {
        opacity: 0;
    }
    55% {
        opacity: 0;
    }
}


@keyframes asd {
    0% {
        top: -20%;
    }
    100% {
        top: 100%;
    }
}

h1 {
    z-index: 3;
    position: absolute;
    font: bold 100px/100px Arial, sans-serif;
    left: 50%;
    top: 50%;
    margin-top: -100px;
    width: 100%;
    margin-left: -50%;
    height: 200px;
    text-align: center;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 0, 0, .5);
    animation: asdd 4s linear infinite;
}
h2 {
    z-index: 3;
    position: absolute;
    font: bold 50px Arial, sans-serif;
    left: 50%;
    top: 50%;
    margin-top: 50px;
    width: 100%;
    margin-left: -50%;
    text-align: center;
	text-shadow: 0 0 30px rgba(0, 0, 0, .5);
    color: transparent;
	animation: asdd 4s linear infinite;
}

@keyframes asdd {
    0% {
        text-shadow: 0 0 30px rgba(0, 0, 0, .1);
    }
    33% {
        text-shadow: 0 0 10px rgba(0, 0, 0, .8);
    }
    66% {
        text-shadow: 0 0 20px rgba(0, 0, 0, .5);
    }
    100% {
        text-shadow: 0 0 40px rgba(0, 0, 0, .1);
    }
}