html, body {
  height: 100%;
}

html {
  font-size: 16px;
}

@media (max-width: 1023px) {
    html {
        font-size: 36px;
    }

    footer {
    	text-align: center;
    }

	#update_button {
		margin: 1em;
		font-size: 200%;
		border-radius: 5px;
		padding: 0.3em 1em;
	}
}

body {
	font-family: "Bookman", Arial, sans-serif;
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
 }

nav {
	background: #334F9F;
 }

nav h1 {
	display: inline-block;
	font-size: 200%;
	color: white;
	width: 100%;
	text-align: center;
 }

nav a {
	position: absolute;
	top: 0px;
	margin: 10px;
	cursor: pointer;
 }

nav img {
	height: 3rem;
	padding: 1rem;
 }

nav a.home {
	right: 0px;
 }

main {
	flex: 1 0 auto;
}

footer {
	flex-shrink: 0;
	text-align: right;
	padding-right: 1em;
}

#password, #login_button {
	font-size: 300%;
	display: block;
	margin: 1em;
	text-align: center;
}

#login_button {
	background: #6DB55A;
	color: white;
	border-radius: 5px;
	padding: 0.3em 1em;
}

.menu-list {
	margin: 0;
	padding: 0;
 }

a {
	text-decoration: none;
 }

.menu-item > a {
	display: block;
 }

.menu-item {
	cursor: pointer;
	margin: 0;
	padding: 1em;
	font-size: 150%;
	border-top: 1px solid grey;
	border-right: 1px solid grey;
	border-left: 0.5em solid;
	margin-left: 0px;
	display: block;
 }

li.menu-item {
	list-style-type: none;
 }

.menu-item li {
	padding-top: 0.5em;
 }

.menu-item > summary, .menu-item a, p.menu-item {
	color: #334F9F;
 }

.menu-item {
	border-left-color: #334F9F;
 }

.menu-item.good {
	border-left-color: #6DB55A;
 }

.menu-item.good > summary, .menu-item.good a, p.menu-item.good, span.good {
	color: #6DB55A;
 }

.menu-item.warning {
	border-left-color: #DEAD26;
 }

.menu-item.warning > summary, .menu-item.warning a, p.menu-item.warning, span.warning {
	color: #DEAD26;
 }

.menu-item.danger {
	border-left-color: #E1652B;
 }

.menu-item.danger > summary, .menu-item.danger a, p.menu-item.danger, span.danger {
	color: #E1652B;
 }

.menu-item em {
	font-style: normal;
	 font-weight: bold;
	 color: #E1652B;
 }

p.notice {
	margin: 2em;
	text-align: center;
}