@import url('https://fonts.googleapis.com/css?family=Open+Sans');
article, aside, footer, header, nav, section {
	display:	        block;
}

html, body, div, a, p, article, aside, footer, header, nav, section,
table, tr, td, th, ul, ol, lh, li, br {
	padding:	        0px;
	margin:		        0px;
}

* {
    font-family:        'Open Sans', serif;
    font-size:          25pt;
}

:root {
    --main-color:       #001933;
}

body {
	background-color:	white;
	color:			    black;
}


.container {
	width:		        100%;
	display:	        flex;
    margin-top:         10px;
}

.left {
	float:		        left;
	width:		        150px;
}

.right {
	float:		        left;
	width:		        200px;
}

.middle {
	float:		        left;
	width:		        700px;
	min-width:	        400px;
    border:             solid var(--main-color) 3px;
    border-radius:      8px;
    padding:            20px;
    text-align:         center;
}

tr > td {
    text-align:         left;
    padding:            0px 0px 0px 5px;
    margin:             0px 0px 0px 5px;
}

tr > td:first-child {
    text-align:         right;
    padding:            5px 2px 5px 0px;
    margin:             5px 2px 5px 0px;
}

input[type="submit"] {
    margin-top:         0.8rem;
    margin-right:       0.7rem;
    margin-left:        -1rem;
}

input[type="submit"], input[type="reset"], input[type="button"] {
    background-color:   var(--main-color);
    color:              white;
    border-radius:      8px;
}

