﻿body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial;
    font-size: 18px;
    margin: 0;
}

h2 {
    padding-top:2em;
}

/* Header/Logo Title */
.header {
    padding: 20px;
    padding-bottom: 4px;
    text-align: center;
    background: #1C1F6A;
    color: white;
    font-size: 30px;
}

.navbar {
    width: 100%;
    overflow: auto;
    display: flex;
    margin-right: 30px;
    flex-direction: row;
    justify-content: flex-end;
}

    .navbar a {
        float: left;
        padding: 12px;
        color: white;
        text-decoration: none;
        font-size: 17px;
    }

        .navbar a:hover {
            color: #1C1F6A;
            background-color: white;
        }


/* Page Content */
.content {
    flex: 1;
    padding: 26px;
    text-align: left;
    margin:60px;
}

.content a {
    color: #1C1F6A;
    background-color: white;
}
    .content a:hover {
        color: white;
        background-color: #1C1F6A;
    }

.buttons {
    text-align:center;
    padding: 26px;
}
.button {
    border: none;
    color: white;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 22px;
    margin: 2px 0px;
    transition-duration: 0.2s;
    cursor: pointer;
}

.button1 {
    background-color: white;
    color: black;
    border: 2px solid #1C1F6A;
    border-radius: 5px 5px;
}

    .button1:hover {
        background-color: #1C1F6A;
        color: white;
    }

.button2 {
    background-color: #6A8818;
    color: white;
    border: 2px solid #6A8818;
    border-radius: 5px 5px;
}

    .button2:hover {
        background-color: white;
        color: #6A8818;
    }

/* Footer */
/* todo: need to have footer flow to bottom of page */
.footer {
    flex-shrink: 0;
    padding-top: 50px;
    width: 100%;
    text-align: center;
    background: #EAECEE;
}

.column {
    float: left;
    width: 33.33%;
}

    .column a {
        color: #1C1F6A;
        background-color: #EAECEE;
        text-decoration: none;
    }

        .column a:hover {
            color: #EAECEE;
            background-color: #1C1F6A;
        }

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
