﻿body, input, select, button {
    font: 14pt Roboto;
}

body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    flex: 0 0 0;
    padding: 10px 20px;
    white-space: nowrap;
    background-color: #333;
    color: #ccc;
}

header h2 {
    margin: 0;
    padding-left: 40px;
    background-image: url(../images/logo-32.png);
    background-repeat: no-repeat;
    background-position: left center;
}

main {
    flex: 1 1 auto;
    padding: 10px 20px;
    overflow: auto;
}

footer {
    flex: 0 0 0;
    padding: 10px 20px;
    white-space: nowrap;
    background-color: #333;
}

input[type=text] {
    padding: 3px;
    box-sizing: border-box;
    width: 100%;
}
