﻿body {
    background-color: black;
    color: white;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: large;
}

h1 {
    color: yellow;
    font-style: oblique;
    font-size: 48px;
}

hr.color {
    border: 4px solid yellow;
    border-radius: 5px;
}

.Copyright {
    color: white;
    font-style: italic;
    font-size: small;
    text-align: center;
}

.Button {
    position: relative;
    background-color: black;
    border: outset;
    border-left-color: white;
    border-top-color: white;
    border-right-color: grey;
    border-bottom-color: grey;
    color: yellow;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: large;
    border-radius: 8px;
    width: 165px;
}

.Button:hover {
    transition-duration: 0.4s;
    color: white;
    border-left-color: grey;
    border-top-color: grey;
    border-right-color: white;
    border-bottom-color: white;
}

.Button:active {
    border-left-color: white;
    border-top-color: white;
    border-right-color: white;
    border-bottom-color: white;
}

.TableCell {
    vertical-align: top;
}

.TableCellYellow {
    vertical-align: top;
    color: yellow;
}

.FormTextBox {
    color: white;
    background-color: black;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
