﻿body {
    background-image: url('backgroundImage.jpg');
    background-position: 0px 90px;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    font-family: Courier New, Courier, monospace;
}

.no-margin {
    margin: 0;
}

.full-size {
    width: 100%;
    height: 100%;
}

.center-middle {
    text-align: center;
    vertical-align: middle;
}

.spacer-100 {
    height: 100px;
}

/* Header */
.header-bar {
    background: #f4f4f4;
    padding: 10px;
}

.logo {
    height: 70px;
}

/* Info table */
.centered {
    margin: 0 auto;
    display: table;
}

table.infoTable {
    border-collapse: collapse;
    color: #333;
    font-weight: bold;
    text-align: left;
}

    table.infoTable th,
    table.infoTable td {
        padding: 10px;
        border-bottom: 1px solid #333;
    }

    table.infoTable tr:hover {
        background-color: #f5f5f5;
        color: black;
    }