/* Base styles */

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.body-spacing {
  margin-top: 40px; /* Adjust as needed */
}

@media (max-width: 600px) {
  .table-wrapper, table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
  }
  .content, .heading, .sub-heading, .caption, p {
    font-size: 4vw !important;
    padding: 2vw;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .image-box {
    width: 100%;
    padding: 0;
  }
}

.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
}

body {
  background-image: url(../images/Frontpage/zombie3.jpg); /* fallback */
  background-repeat: no-repeat;
  background-size: cover; /* fills viewport */
  background-position: top center;
  background-color: #000000;
  margin: 0;
}

map area {
  outline: none;
  border: none;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: #999999;
}

@media (max-width: 600px) and (orientation: portrait) {
  body {
    background-position: top left !important;
    background-size: auto 100vh !important;
    background-repeat: no-repeat !important;
    overflow-x: auto;
  }
}

@media (max-width: 600px) and (orientation: landscape) {
  body {
    background-position: top center !important;
    background-size: 100vw 100vh !important;
    background-repeat: no-repeat !important;
    overflow-x: hidden !important;
  }
}

/* page title red and bigger */
.seandower-title {
  color: #FF0000!important; /* pure red */
  font-size: 2.4em;
  font-family: "Book Antiqua", serif;
  text-decoration: none;
  margin-right: 10px;
  font-weight: normal!important; /* not bold */
}

.seandower-subtitle {
  color: #666666;
  font-size: 1.1em;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  font-weight: normal!important; /* not bold */
}

/* Both inline and vertically aligned */
.seandower-title,
.seandower-subtitle {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .seandower-title {
    font-size: 6vw;
  }
  .seandower-subtitle {
    font-size: 3.5vw;
  }
}