/* Keep original site look while using Bootstrap for layout */

html,
body {
  min-height: 100%;
}

html {
  background-color: #000000;
}

body {
  /* Fallback to original black if image missing */
  background-color: #000000;
  /* site.css is in assets/css/, images are in /img/ */
  background-image: url("../../img/bg.jpg");
  background-repeat: repeat;
  color: #ffffff;
  font-family: Tahoma, sans-serif;
}

a,
a:visited,
a:active {
  color: #ffffff;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: #ffffff;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Preserve the original centered header + nav feel */
.ally-header {
  text-align: center;
  margin-top: 0.5rem;
}

.ally-nav {
  text-align: center;
  font-size: 0.875rem;
}

.ally-nav a {
  white-space: nowrap;
}

/* Pages previously used absolute positioning; keep centered readable column */
.ally-content {
  text-align: justify;
}

/* Story page tweaks */
body.page-story .ally-content {
  font-size: 18px;
  line-height: 1.6;
}

body.page-story .ally-content img {
  width: 600px;
  max-width: 100%;
}

body.page-story .ally-content p {
  margin: 1rem 0;
}

@media (min-width: 992px) {
  .ally-content {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

