/*Created by Evildread/Karnahaz*/

/****HTML Codes****/
body{
background-image: url("images/win-bg-img.jpg");
background-repeat: no-repeat;
background-size: cover;
color: #FFF;
}


/****Title Bar****/
.title{
width: 671px;
height: 30px;
border: 0;
background: #FFF url(images/title.png) no-repeat;
}

.title-text{
text-align: left;
padding: 9px 0px 0px 30px;
color: #FFFFFF;
font-size: 12px;
font-family:monospace;
/*font-family: courier; */
}

/****CMP Prompt****/

#wrapper{
top:70px;
height:300px;
overflow-y:scroll;
}

.text-area{
width: 671px;
height: auto;
border: 0;
background: #FFF url(images/text.png) repeat-y;
}

.text-text{
text-align: left;
padding: 0px 0px 0px 8px;
color: #CCCCCC;
font-size: 12px;
font-family: courier;
}

a{
text-decoration: none;
color: #CCCCCC;
}

.footer{
width: 671px;
height: 7px;
border: 0;
background: #FFF url(images/footer.png) no-repeat;
}

/****Commands****/
mark{
color: #000;
background-color: #FFF;
}

/*
under{
text-decoration: blink;
}
*/

.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{     color: #FFF;    }
    49%{    color: #FFF; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #FFF;    }
}