@import url('https://fonts.googleapis.com/css?family=Questrial&effect=anaglyph|fire|neon&display=swap');

body{
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: black;
    overflow: hidden;
}

#info {
	position: absolute;
	width: 100%;
	text-align: center;
	z-index: 100;
    display:block;
    color: white;
    display: flex;           /* establish flex container */
    flex-direction: column;  /* make main axis vertical */
    justify-content: center; /* center items vertically, in this case */
    align-items: center;     /* center items horizontally, in this case */
    height: 100vh;
    font-family: 'Questrial';
    font-size: 4.0rem;
}