html {
    background: #111;
}

body {
	background: #000;
    box-shadow: 0 0 50px #777;
    color: #eee;
    font-family: verdana, sans-serif;
    font-weight: 600;
}

a {
    color: #6F6;
}

a:hover {
    background: gray;
}

.showButton {
    background: #eee;
    background: linear-gradient(to bottom, #fff, #ddd);
    border: 4px outset gray;
    color: #000;
    padding: 10px;
}

.showButton:hover {
    cursor: pointer;
    background: #355;
    background: linear-gradient(to bottom, #466, #244);
    color: white;
}