body {
  overflow-y: hidden;
}

header {
  color: white;
  width: calc(100% - 16px);
  height: 80px;
  padding: 4px;
  box-sizing: border-box;
  position: fixed;
  z-index: 999;
}

#header-title {
  background-color: rgb(25, 42, 88);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 3px;
}

.title1 {
  color: red;
  border-radius: 10px;
  border: solid 4px red;
  margin-left: 3px;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 1.0em;
}

.title2 {
  font-size: 1.5em;
}

#displayTime {
  font-size: 1.5em;
}

#header-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 1px;
  padding-right: 1px;
  background-color: rgb(25, 42, 88);
}

nav {
  text-decoration: none;
}

#menubar {
  list-style-type: none;
  text-align: center;
  height: 20px;
  margin: 0;
  padding: 0;
}

#menubar li {
  border-right: solid 1px white;
  display: inline-block;
}

#menubar li:hover {
	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.5);
}

#menubar li:active {
	color: black;
  background-color: lightgrey;
}

#menubar li a {
  color: white;
  text-decoration: none;
  padding-left: 5px;
  padding-right: 5px;
}

main {
  padding-top: 80px;
}

footer {
  width: calc(100% - 16px);
  height: 20px;
  background-color: rgb(25, 42, 88);
  box-sizing: border-box;
  position: fixed;
  bottom: 5px;
  text-align: center;
  z-index: 999;
}

footer span {
  color: white;
}