Edit in JSFiddle

<div id="BSOD">
    <p id="windowsTitle">Windows</p>
    <p class="errorText">A fatal exception 0E has occured at 0028:c0011e36 in VXD VMM(01) + 00010E36.
        <br/>The current application will be terminated.</p>
    <ul class="errorText">
        <li>Press any key to terminate the current application.</li>
        <li>Press CTRL+ALT+DEL again to restart your computer.You will
            <br/> <span>lose any unsaved information in all applications.</span></li>
    </ul>
    <p class="errorText" id="enterToCont">Press any key to continue _</p>
</div>
 <a id="link" href="http://hexapodscorner.blogspot.co.uk" target="_blank"> Giorgio Malvone</a>
::selection {
    background: rgba(0, 0, 0, 0.99);
    color: #FFFFFF;
}
body {
    background-color:#0202AC;
    font-family:Fixedsys;
    color:#ffffff;
}
#BSOD {
    display:block;
    text-align: center;
}
#windowsTitle {
    background-color:#B2B2B2;
    color:#0202AC;
    display:inline-block;
    padding-right:8px;
    padding-left:8px;
    margin-top:100px;
    margin:0, auto;
}
.errorText {
    display:block;
    text-align:left;
    margin-left:25%;
    margin-right:25%;
    list-style-type:none;

	list-style-position:inside;
}
#enterToCont {
    text-align:center;
}
li:before{

	content:"* ";
    
}
span{
    margin-left:16px;
    
}
#link{
    position:absolute;
    bottom:0;
    right:5px;
    color:#ecf0f1;
    font-family: 'Karla', sans-serif;
}
a{
    text-decoration:none;
}
#link:visited{
    color:#95a5a6;
}
#link:link{
    color:#bdc3c7;
}