body {
    background-color: #111;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background: #111;
	background-position: center;
}

#wrapper {
	animation: blink 5s infinite, glitch 8s infinite;
    margin: auto;
    text-align: justify;
    width: 75%;
    max-width: 29em;
    font-family: "VT323", "Courier", "Courier New", monospace;
    font-size: 1.5em;
    color: #2b2;
}

#content {
    display: inline-block;
    padding-top: 20%;
    padding-bottom: 20%;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
	text-shadow: 0px 1px 3px #111;
}

#message {
	text-shadow: 0px 1px 3px #111;
}

#message::after {
	content: "|";
	animation: cursorblink 333ms ease-out infinite alternate;
}

#header {
    color: #efe;
    font-size: 3em;
    text-align: center;
	animation: glow 1.5s infinite;
}

a {
    color: #efe;
	animation: glow 1.5s infinite;
}

form {
	display: inline-block;
	width: 100%;
}

input {
    font-family: inherit;
    font-size: inherit;
    color: #efe;
    cursor: pointer;
}

input[type="file"] {
    display: none;
}

#filename {
    margin-left: 10px;
    display: inline;
}

.button {
    background: none;
    border: 2px solid #efe;
    color: #efe;
    padding: 8px 14px;
    text-align: center;
    display: inline;
    cursor: pointer;
	animation: glow 1.5s infinite;
	box-shadow: 0px 0px 8px #efe;
}

@keyframes blink {
	1% {
		opacity: 0.2;
	}
	2% {
		opacity: 1;
	}
}

@keyframes glitch {
    0% {
        transform: skew(0deg, 0deg) translate(0, 0);
        filter: blur(0);
    }
    0.5% {
        transform: skew(-5deg, 0deg) translate(-2em, 0);
        filter: blur(4px);
    }
    1% {
        transform: skew(5deg, 0deg) translate(2em, 0);
    }
    1.5% {
        transform: skew(0deg, 0deg) translate(0, 0);
        filter: blur(0);
    }
    100% {
        transform: skew(0deg, 0deg) translate(0, 0);
    }
}

@keyframes glow {
	0% {
		text-shadow: 0px 1px 4px #dfd;
	}
	50% {
		text-shadow: 0px 1px 9px #cdc;
	}
	100% {
		text-shadow: 0px 1px 4px #dfd;
	}
}

@-webkit-keyframes cursorblink{
	0%{opacity: 0;}
	100%{opacity: 1;}
}

@-moz-keyframes cursorblink{
	0%{opacity: 0;}
	100%{opacity: 1;}
}

@keyframes cursorblink{
	0%{opacity: 0;}
	100%{opacity: 1;}
}
