html {
  height: 100%;
  box-sizing: content-box;
}
html body {
  height: 100%;
  color: #4b2113;
  font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  font-size: 16px;
  background-image: url("../Images/Background.jpg");
  background-size: cover;
}
html body p {
  line-height: 25px;
}
html body .scriptfont {
  font-family: Lucida handwriting, sans-serif;
}
html body div.container-fluid {
  display: flex;
  display: -webkit-flex;
  flex-flow: column;
  -webkit-flex-flow: column;
  min-height: 100%;
  padding: 50px;
  max-width: 1200px;
  overflow: hidden;
}
html body div.container-fluid .row:first-of-type {
  position: relative;
  color: white;
  margin-bottom: 30px;
  background: linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
}
html body div.container-fluid .row:first-of-type div.col-sm-6 h1 {
  font-size: 30px;
  margin: 0;
}
html body div.container-fluid .row:first-of-type div.col-sm-6 h1 span.scriptfont {
  font-size: 40px;
}
html body div.container-fluid .row:first-of-type div.col-sm-6:last-of-type p {
  margin: 10px;
  line-height: 25px;
}
html body div.container-fluid .row:last-of-type {
  background-image: url("../Images/Painting.jpg");
  border: 10px solid #d9cdc2;
  outline: 1px solid #4b2113;
  flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  display: flex;
  display: -webkit-flex;
}
html body div.container-fluid .row:last-of-type .col-md-9 {
  flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  background-color: #d9cdc2;
  padding: 0 30px;
}
html body div.container-fluid .row:last-of-type .col-md-9 label {
  display: none;
  font-size: 18px;
}
html body div.container-fluid .row:last-of-type .col-md-9 label:hover {
  color: #d9cdc2;
  background-color: #4b2113;
}
html body div.container-fluid .row:last-of-type .col-md-9 ul#menu {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  text-align: center;
}
html body div.container-fluid .row:last-of-type .col-md-9 ul#menu li {
  display: inline;
  margin: 0;
}
html body div.container-fluid .row:last-of-type .col-md-9 ul#menu li a {
  color: #4b2113;
  font-size: 18px;
  text-decoration: none;
  padding: 5px 10px;
  margin: 0 20px;
  transition: .5s;
  -webkit-transition: .5s;
  /* Safari */
}
html body div.container-fluid .row:last-of-type .col-md-9 ul#menu li a:hover,
html body div.container-fluid .row:last-of-type .col-md-9 ul#menu li a#active {
  color: #d9cdc2;
  background-color: #4b2113;
}
html body div.container-fluid .row:last-of-type .col-md-9 ul#menu li a#active {
  font-family: lucida handwriting, sans-serif;
}
html body div.container-fluid .row:last-of-type .col-md-9 div.text {
  height: 80%;
  padding: 0 50px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
}
html body div.container-fluid .row:last-of-type .col-md-9 div.text.scrolling {
  overflow-y: scroll;
}
html body div.container-fluid .row:last-of-type .col-md-9 div.text.centered {
  text-align: center;
}
html body div.container-fluid .row:last-of-type .col-md-9 div.text div {
  display: block;
}
html body div.container-fluid .row:last-of-type .col-md-9 div.text div p:not(:first-of-type):before {
  content: '\2022';
  display: block;
  text-align: center;
}
html body div.container-fluid .row:last-of-type .col-md-9 div.text div iframe {
  margin-top: 10px;
  width: 100%;
}
html body div.container-fluid .row:last-of-type .col-md-9 div.text ul {
  list-style: none;
}
/*==========  Non-Mobile First Method  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  html body div.container-fluid .row:last-of-type .col-md-9 ul#menu li a {
    margin: 0;
  }
}
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  html body div.container-fluid {
    padding: 0;
    text-align: center;
    height: auto;
  }
  html body div.container-fluid .row:first-of-type {
    margin: 0;
    padding: 20px;
  }
  html body div.container-fluid .row:first-of-type div.col-sm-6 p.text-right {
    text-align: center;
  }
  html body div.container-fluid .row:last-of-type .col-md-9 label {
    display: block;
  }
  html body div.container-fluid .row:last-of-type .col-md-9 input:checked + ul {
    display: block;
  }
  html body div.container-fluid .row:last-of-type .col-md-9 input:not(:checked) + ul {
    display: none;
  }
  html body div.container-fluid .row:last-of-type .col-md-9 ul#menu:first-of-type {
    margin: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #d9cdc2;
  }
  html body div.container-fluid .row:last-of-type .col-md-9 ul#menu:first-of-type li {
    display: block;
    padding-bottom: 20px;
  }
  html body div.container-fluid .row:last-of-type .col-md-9 ul#menu:first-of-type li a {
    border-bottom: 1px solid #4b2113;
  }
  html body div.container-fluid .row:last-of-type .col-md-9 div.text {
    padding: 20px;
    height: auto;
    text-align: left;
  }
}
