body {
    margin: 0px;
    padding: 0px;

	width: 100vw;
	min-height: 100vh;

	display: flex;
	flex-direction: column;

    background-color: #003565;
    color: white;
    
    font-family: Comfortaa, Arial, Helvetica, sans-serif;
}

nav.header {
    width: 100vw;
    padding: 25px;
    z-index: 10;

    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    justify-content: space-between;
}

nav.header * {
    width: 100%;
}

div.header-img {
    display: inline-block;

    background-position: center;
    background-repeat: no-repeat;
}

div.header-img.large {
	min-height: 150px;
	background-size: contain;
}

div.header-img.left {
    background-position: left;
}

div.header-img.right {
    background-position: right;
}

.title {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
    flex-wrap: wrap;

    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

.title .small {
    font-size: 26px;
    font-weight: normal;
}

/** Centered Page Content Container **/

div.content {
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100%;
    z-index: 1;

    flex: 1;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

/** Tile Styling **/
div.tile {
    margin: 10px;
    text-align: center;
}

div.tile .value {
    font-weight: bold;
    font-size: 72px;
}

div.tile .unit {
    font-size: 22px;
}

div.tile .subtitle {
    display: block;
    
    text-align: center;
    font-size: 18px;
}

/** Footer Styling **/

div.footer {
    width: 100vw;
    box-sizing: border-box;
    padding: 10px;

    display: flex;
    flex-direction: row;

    font-size: 12px;
}

div.footer * {
    display: inline-block;
    width: 100%;
}

div.footer .left {
    text-align: left;
}

div.footer .right {
    text-align: right;
}
