/*Main page*/
html {
background-color: #E8D6B3;
}
body {
  background-color: #E8D6B3;
  font-family:Lora;
  font-weight: 500;
  color: #3B2415;
  margin: 0;
}
/*Container for everything*/
.container {
  height: 100%;
  width: 90%;
  max-width: 900px;
  margin:auto;
  display:block;
  position:relative;
  border:#5C3A22 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: #5C3A22;
  color: #A15C33;
  margin: 0 auto;
  text-align: center;
  padding:5px;
}
.subheader p {
  font-size: 12px;
}
a {
  color: #3B2415;
  font-weight: 800;
  text-decoration:none;
}
a:hover {
  color: #A15C33;
  text-decoration: underline;
}
/*Navbar and its properties*/
#navbar {
  background-color: #5C3A22;
}
#navbar ul {
  display: flex;
  padding: 5px;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}
#navbar li a {
  color: #A15C33;
  font-weight: 800;
  text-decoration:none;
  font-size: 13px;
}
#navbar li a:hover {
  color: #A15C33;
  text-decoration: underline;
}
main {
  margin:0 auto;
  display:flex;
  align-items: flex-start;
  background-color: #5C3A22;
}
.left-column {
  flex: 0 0 150px;
  display:flex;
  flex-direction: column;
  gap:5px;
  font-size: 14px;
}
.changelog {
  background-color: #E8D6B3;
  padding: 10px;
  border:5px solid #5C3A22;
}
.textR {
  border:5px solid #5C3A22;
  padding:10px;
  background-image: url("Old_Paper_texture.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.text {
  border:5px solid #5C3A22;
  padding:10px;
  background-color:#E8D6B3;
}
.text2 {
  border:5px solid #5C3A22;
  border-top:0px;
  padding:10px;
  background-color: #E8D6B3;
}
.right-column {
  flex: 1;
  text-align:justify;
  hyphens: auto;
}
footer img {
  width:88px;
  height:31px;
}
/*Old page css*/