@font-face {
  font-family: 'Roman';
  src: url('fonts/NimbusRomNo9L-Reg-webfont.woff') format('woff');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Roman';
  src: url('fonts/NimbusRomNo9L-RegIta-webfont.woff') format('woff');
  font-style: italic;
  font-weight: 300;
}

@font-face {
  font-family: 'Roman';
  src: url('fonts/NimbusRomNo9L-Med-webfont.woff') format('woff');
  font-style: normal;
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roman", serif;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;  /* Or 700 */
}

h1 {
  font-weight: 300;
  font-size: 2em;
}

h2 {
  font-weight: 300;
  font-size: 1.5em;
}

h3 {
  font-weight: 300;
  font-size: 1.2em;
}

h4 {
  font-weight: 300;
  font-size: 1em;
}

body {
    background-color: #ebebeb; /* offwhite */
    color: #0f0f0e; /*off black*/
  }

a {
  color: #0f0f0e;
  text-decoration: none;
}

a:visited {
  color: #0f0f0e;
  text-decoration: none;
}

a:hover {
  color: #94631b; /*muddy orange*/
  text-decoration: none;
}

.menu-container {
  margin: 20px 20px 0px 20px;
}
.menu {
  display: flex;
  justify-content: center;
}

.menu-item {
  display: flex;
  justify-content: center;
}

.menu-text {
  font-size: 1.2em;
  font-weight:300;
  text-decoration: none;
  display: block;
}

.title {

}

.sub-menu {
  display:flex;
  justify-content: center;
}

.sub-title {

}


.page {
  margin: 0 20px 0 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /*border:1px solid #f00fff; /* pink border */
}

.index-body {
margin-top:10px;
}

.text-container:first-of-type {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.text-container {
  margin-top: 10px;
  justify-content: center;
  /*border:1px solid #94631b; /*muddy orange*/
}

.text-container:last-of-type {
  flex-basis: 100%;
  display: flex;
  text-align: center;
  margin-top: 10px;
}

.text-title {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  /*border:1px solid; */
}

.inner-page {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  /*border:1px solid #6aaaff; /* blue border */
}

.bookings {
  /*color: #94631b; /*muddy orange*/
  text-decoration: underline;
}

/* Mobile Styles */
@media only screen and (max-width: 400px) {
    h1 {
      font-size: 1.4em;
    }
    h2 {
      font-size: 1.2em;
    }
    h2.question-mark {
      font-size: 1.6em;
    }

    h4 {
      font-size: 1.1em;
    }
}

/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {
/*  h2 {
    font-size: 1.3em;
  }
  h1 {
    font-size: 1.5em;
  }

  h4 {
    font-size: .9em;
  } */
}

/* Desktop Styles */
@media only screen and (min-width: 961px) {
  .page {
  width: 960px;
  margin: 0 auto;
  }
  .inner-page {
    flex-basis: 60%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /*border:1px solid #6aaaff; /* blue border */
  }
}
