/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
html {
  background-color: black;
}
body {
  background-color: #724114;
  color: white;
  font-family: "Times New Roman", Times;
  width: 1400px;
  max-width:100%;
  margin: 0 auto;
  border: 5px solid black;
  border-left-color: #241506;
  border-right-color: #241506;
  border-bottom-color: #935f2f;
}
hr {
  color:#5e3106;
  width:650px;
}
h1, h2, h3 {
  font-family: "Times New Roman", Times;
  color: white;
  text-align: center;
}
header {
  position:static;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -10px;
  background-color:black;
}
.banner {
  max-height: 50%;
  margin-top:10px;
}
h1 {
  font-size: 40px;
  height: 30px;
  margin: 0 auto;
  border: 10px solid black;
}
.notcenterd {
  text-align: center;
  margin-left: -850px;
  padding:10px;
  font-family: "Times New Roman", Times;
  font-size: 22px;
  color: white;
}
.rightside {
  text-align: center;
  margin-left: 850px;
  padding:10px;
  font-family: "Times New Roman", Times;
  font-size: 22px;
  color: white;
}
nav {
  height: 100px;
  width:1400px;
  background-color: #422204;
  display: flex;
  margin-bottom: 20px;
  border-bottom: 4px solid #5e3106;
  border-top: 4px solid #244f30;
}
nav ul {
  padding: 0;
  list-style-type: none;
  flex: 2;
  display: flex;
}

nav li {
  display: inline;
  text-align: center;
  flex: 1;
}
p {
  font-family: "Times New Roman", Times;
  font-size: 22px;
  color: white;
  text-align: center;
}
a {
  font-family: "Times New Roman", Times;
  text-align: center;
  color: #f5cba4;
  font-size: 22px;
}
img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.side {
    display: block;
  margin: 0 auto;
  left: 50px;
  top: 25px;
  max-width: 100%;
  max-height: 95%;
  position:fixed
}
.sideTWO {
    display: block;
  margin: 0 auto;
  right: 50px;
  top: 25px;
  max-width: 100%;
  max-height: 95%;
  position:fixed
}
main {
  display: flex;
}
div {
  position:static;
}
.gallery {
  height: 100px;
  width:1400px;
  background-color: transparent;
  display: flex;
  margin-bottom: 20px;
  border-bottom: none;
  border-top: none;
}
article {
  flex: 4;
}
footer {
  margin-top: 10px;
  font-size: 15px;
  margin-bottom: 10px;
  text-align: center;
}