@font-face {
    font-family: CenturyX;
    src: url("century_normal.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
    font-family: CenturyX;
}

html { height: 100%; }

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main {
    box-shadow: 0 0 20px #00000033;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 15px 25px;
    margin: 40px auto;
    max-width: 1000px;
    align-self: auto;
    flex: 0 1 auto;
    width: 100%;
}

.stuff {
    background-color: #00000011;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 25px;
}

table {
    border-collapse: collapse;
    border: #000 1px solid;
    margin: 15px 0;
    width: 100%;
}

hr {
    border: #000 1px solid;
    margin: 15px 0;
}

footer {
    height: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    margin-top: auto;
}

.stuff:not(:first-child) { margin-left: 10px; }

.stuff:hover { background-color: #00000033; }

.alert { color: red; font-weight: bold; }

p:not(:first-child) { margin-top: 10px; }

p { line-height: 1.5em; }

h2 > a { color: white; }

h2 { margin-top: 20px; }

h3 { margin-top: 14px; }

a { color: black; }