body {
    background-color: #000;
    color           : white;
}

.button {
    display         : inline-block;
    padding         : 10px 20px;
    color           : white;
    text-align      : center;
    text-decoration : none;
    background-color: #444;
    border          : 1px solid #777;
    font-size       : 14px;
    border-radius   : 4px;
    cursor          : pointer;
}

.button:hover {
    background-color: #eee;
    color           : #111;
}

table {
    border         : 1px solid #ccc;
    border-collapse: collapse;
    width          : 100%;
}

table th,
table td {
    padding: 5px;
}

table th {
    background-color: #333;
}