body {
  margin: 0;
  background:
    linear-gradient(rgba(60, 0, 0, 0.55), rgba(30, 0, 0, 0.75)),
    url("/images/marble-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  color: #2b1b14;
  font-family: Georgia, "Times New Roman", serif;
}

/* HEADER */

.site-header {
  width: 100%;
  margin: 0;
  text-align: center;
  background: linear-gradient(#4a0909, #8b1717, #4a0909);
  border-bottom: 4px solid #c9a24a;
}

.banner {
  padding: 35px 20px;
  background:
    linear-gradient(rgba(60, 0, 0, 0.4), rgba(60, 0, 0, 0.4)),
    url("/images/roman-banner.jpg");
  background-size: cover;
  background-position: center;
}

.banner h1 {
  margin: 0;
  color: #f5e4b8;
  font-size: 56px;
  letter-spacing: 4px;
  text-shadow: 3px 3px 4px #000;
}

.main-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #5f0f0f;
}

.main-menu a {
  color: #f3d68a;
  text-decoration: none;
  padding: 14px 22px;
  font-weight: bold;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.main-menu a:hover {
  background: #9f1d1d;
  color: #fff4c2;
}

/* MAIN LAYOUT */
#rome-shell {
  width: 1200px;
  max-width: 96%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 1472px;
}

#rome-left-column,
#rome-right-column {
  width: 180px;
  min-height: 750px;
  flex: 0 0 180px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 1472px;
  position: relative;
  z-index: 2;
}

#rome-left-column {
  background-image: url("/images/column_left.png");
}

#rome-right-column {
  background-image: url("/images/column_right.png");
}

#rome-main {
  flex: 1;
  min-height: 1472px;
  background: #e6dcc8;
  padding: 25px;
  box-sizing: border-box;

  margin-left: -90px;
  margin-right: -90px;

  padding-left: 115px;
  padding-right: 115px;

  position: relative;
  z-index: 1;
}

/* TITLE PANEL */

.rome-title-panel {
  background: linear-gradient(to bottom, #8e1b1b, #651010);
  color: #f8e9c6;
  text-align: center;
  padding: 25px;
  margin-bottom: 20px;
  border: 3px solid #c8a14d;
}

.rome-title-panel h1 {
  margin: 0;
  font-size: 48px;
  letter-spacing: 3px;
}

.rome-title-panel p {
  margin-top: 10px;
  font-size: 18px;
}

/* CONTENT PANELS */

.rome-panel {
  background: rgba(255,255,255,0.70);
  border: 2px solid #b08d57;
  padding: 20px;
  margin-bottom: 20px;
}

.rome-panel h2 {
  margin-top: 0;
  color: #8e1b1b;
  border-bottom: 2px solid #c8a14d;
  padding-bottom: 5px;
}

/* FOOTER */

.site-footer {
  width: 100%;
  margin: 0;
  text-align: center;
  color: #f3d68a;
  background: #3b0808;
  border-top: 3px solid #c9a24a;
  padding: 18px;
  box-sizing: border-box;
}

/* MOBILE */

@media (max-width: 900px) {
  #rome-shell {
    width: 96%;
    display: block;
    min-height: auto;
  }

  #rome-left-column,
  #rome-right-column {
    display: none;
  }

  #rome-main {
    min-height: auto;
  }
}