@charset "utf-8";
/* CSS Document */

body
{
    background-color: #000;
    background-image: url(../res/logo3.gif);
    background-position: right bottom; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: monospace;
	font-size: 16px;
	color: #acacac;
	overflow:hidden;
}

header
{
}

* {
  box-sizing: border-box;
}

#console
{
	display: block;
	color: #99ff00;
	float: left;
	width: 50vw;
	height: 10vh;
	border: none;
}

.merg
{
	float: right;
}

#console:after
{
	content:"_";
	color: green;
	opacity: 0;
	animation: cursor 1s infinite;
}

@keyframes cursor {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}