* {
    cursor: default;
    font-family: monospace;
	font-size: 20px;
}

body{
	background-color: black;
	color: white;
	
}

input#cmdinput {
    border: none;
    background-color: inherit;
    color: inherit;
    width: inherit;
    font-size: 12pt;
	outline: none;
	font-size: 20px;
}

[red]{
    color: red;
}

a{
    cursor: pointer;
    color: inherit
}

a:visited{
    cursor: pointer;
    color: inherit
}

span#terminal{
    border: #00ff00;
    width: 400px;
    height: 400px;
}
.rainbow{
    animation-name:test;
    animation-duration:4s;
    animation-iteration-count:infinite;
}
@keyframes
test {
    0% {
        color: #ff0000
    }
    20% {
        color: #00ff00
    }
    40% {
        color: #ffff00
    }
    60% {
        color: #0000ff
    }
    80% {
        color: #00ffff
    }
    100% {
        color: #ff0000
    }
}
