/*Main page*/
html {
background-color: #2E9C97;
}
body {
  background-image: url("/main-images/water.gif");
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0F4C4A;
  margin: 0;
}
/*Container for everything*/
.container {
  height: 100%;
  width: 90%;
  max-width: 900px;
  margin:auto;
  display:block;
  position:relative;
  border:#FBF7EE solid 10px;
  border-top-style: none;
  border-bottom-style: none;

}
/*banner image omoha*/
.banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
}
.subheader {
  background-color: #2E9C97;
  color: #FBF7EE;
  margin: 0 auto;
  text-align: center;
  padding:5px;
}
.subheader p {
  font-size: 12px;
}
a {
  color: #0F4C4A;
  font-weight: 800;
  text-decoration:none;
}
a:hover {
  color: #5FBFB0;
  text-decoration: underline;
}
/*Navbar and its properties*/
#navbar {
  background-color: #2E9C97;
}
#navbar ul {
  display: flex;
  padding: 5px;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}
#navbar li a {
  color: #0F4C4A;
  font-weight: 800;
  text-decoration:none;
  font-size: 13px;
}
#navbar li a:hover {
  color: #5FBFB0;
  text-decoration: underline;
}
main {
  margin:0 auto;
  display:flex;
  align-items: flex-start;
  background-color: #2E9C97;
}
.left-column {
  flex: 0 0 150px;
  display:flex;
  flex-direction: column;
  gap:5px;
  font-size: 14px;
}
.changelog {
  background-color: #FBF7EE;
  padding: 10px;
  border:5px solid #2E9C97;
}
.text {
  border:5px solid #2E9C97;
  padding:10px;
  background-color: #FBF7EE;
}
.text2 {
  border:5px solid #2E9C97;
  border-top:0px;
  padding:10px;
  background-color: #FBF7EE;
}
.right-column {
  flex: 1;
  text-align:justify;
  hyphens: auto;
}
footer img {
  width:88px;
  height:31px;
}
/*Images*/
.box {
  float:right;
  border:2px solid #2E9C97;
  margin: 0px auto;
  padding:5px;
  margin-right:0px;
  margin-left: 15px;
  background-color: white;
  max-width: 150px;
}
.box p {
  text-align: center;
  margin:0;
}
.box img {
  width:100%;
  display:block;
}
/*Navigator subsections*/
.navigator {
  border:5px solid #2E9C97;
  padding:10px;
  background-color: #FBF7EE;
}
.navigator ul {
  padding: 5px;
  margin: 0;
  list-style-type: none;
}
.navigator li a {
  color: #0F4C4A;
  font-weight: 500;
  text-decoration:none;
}
.navigator li a:hover {
  color: #5FBFB0;
  text-decoration: underline;
}



/*Old page css*/