﻿body {
}

html {
    font-family: Source Sans Pro;
}

/* header div styling - top skinny border */
.header-div {
    display: flex;
    height: 10px;
    background-color: #007dbc;
    margin: 0px;
}

.title-div {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 15px;
}

.sub-title-div {
    display: flex;
    flex: 1;
    margin-top: 2px;
    margin-bottom: 15px;
    border-bottom: 2px solid #007dbc;
}

.button-div {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

span {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
}

.button-style {
    background-color: #007DBC;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin: 10px 0px 5px 0px;
}

.button-style:hover {
    background-color: #0b6fa4;
    color: whitesmoke;
}

.footer-div {
    margin-top: 25px;
    font-size: small;
}

.copyright {
    font-size: small;
}