@font-face {
  font-family: Baron Kuffner;
  src: url('fonts/Baron-Kuffner.otf');
} 

body {
    background-image: url("images/background.jpg");
    background-color: black;
}

.main-center {
  text-align: center;
  margin: 0 auto;
  width: 60%;
}

.main-title {
  font-family: 'Baron Kuffner', 'Black Ops One', cursive;
  font-size: 65px;
  font-weight: 400;
  text-align: center;
  color: grey;
  margin: 0px;
}

.main-body {
  font-family: 'Nova Square';
  background-color: black;
  margin-top: 20px;
  padding: 10px;
  border: 10px solid grey;
  border-radius: 5px;
  color: white;
  overflow: hidden;
}

.main-logo {
  width: 155px;
  float: left;
  margin-top: 15px;
}

.main-image {
  border: 5px solid grey;
  border-radius: 5px;
  height: 300px;
}

.images {
  max-width:100%;
  max-height:100%;
}

.no-float {
  clear: both;
}

.nav {
  width: 100%;
}

.footer-box {
  float: left;
  width: 33%;
  font-family: 'Nova Square';
}

.footer-box h3 {
  color: #3364AF;
}

.footer-box iframe {
  width: 90%;
}

.instructor {
  clear: both;
  min-height: 180px;
  width: 80%;
  margin: auto;
}

.instructor h2 {
  font-size: 150%;
}

.instructor h3 {
  font-size: 120%;
}

.instructor img {
  float: right;
  margin-left: 20px;
  max-height: 180px;
  border: 5px solid grey;
  border-radius: 5px;
}

.errorMessage {
  color: red;
}

/** START: Drop down menu **/
.nav ul {
  list-style: none;
  background-color: grey;
  text-align: center;
  padding: 0;
  margin: 0;
}

.nav li {
  font-family: 'Baron Kuffner', 'Black Ops One', sans-serif;
  font-size: 1.2em;
  line-height: 50px;
  text-align: left;
}

.nav a {
  text-decoration: none;
  color: #fff;
  display: block;
  padding-left: 15px;
  border-bottom: 1px solid #888;
  transition: .3s background-color;
}

.nav a:hover {
  background-color: #b58946;
}

.nav a.active {
  background-color: #aaa;
  color: #444;
  cursor: default;
}

/* Sub Menus */
.nav li li {
  font-size: .8em;
}

/*******************************************
   Style menu for larger screens

   Using 650px (130px each * 5 items), but ems
   or other values could be used depending on other factors
********************************************/

@media screen and (min-width: 650px) {
  .nav li {
    width: 180px;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 2.0em;
    display: inline-block;
    margin-right: -4px;
  }

  .nav a {
    border-bottom: none;
  }

  .nav > ul > li {
    text-align: center;
  }

  .nav > ul > li > a {
    padding-left: 0;
  }

  /* Sub Menus */
  .nav li ul {
    position: absolute;
    display: none;
    width: inherit;
  }

  .nav li:hover ul {
    display: block;
  }

  .nav li ul li {
    display: block;
  }
}
/** END: Drop down menu **/

/** Contact form **/
.dark-matter {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    background: #555;
    padding: 20px 30px 20px 30px;
    color: #D3D3D3;
    text-shadow: 1px 1px 1px #444;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.dark-matter h1 {
    padding: 0px 0px 10px 40px;
    display: block;
    border-bottom: 1px solid #444;
    margin: -10px -30px 30px -30px;
}
.dark-matter h1>span {
    display: block;
    font-size: 11px;
}
.dark-matter label {
    display: block;
    margin: 0px 0px 5px;
}
.dark-matter label>span {
    float: left;
    width: 20%;
    text-align: right;
    padding-right: 10px;
    margin-top: 10px;
    font-weight: bold;
}
.dark-matter input[type="text"],
.dark-matter input[type="email"],
.dark-matter textarea,
.dark-matter select {
    border: none;
    color: #525252;
    height: 25px;
    line-height:15px;
    margin-bottom: 16px;
    margin-right: 6px;
    margin-top: 2px;
    outline: 0 none;
    padding: 5px 0px 5px 5px;
    width: 70%;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    background: #DFDFDF;
}
.dark-matter select {
    background: #DFDFDF url('down-arrow.png') no-repeat right;
    background: #DFDFDF url('down-arrow.png') no-repeat right;
    appearance:none;
    -webkit-appearance:none; 
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    width: 70%;
    height: 35px;
    color: #525252;
    line-height: 25px;
}
.dark-matter textarea{
    height:100px;
    padding: 5px 0px 0px 5px;
    width: 70%;
}
.dark-matter .button {
    background: #FFCC02;
    border: none;
    padding: 10px 25px 10px 25px;
    color: #585858;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    text-shadow: 1px 1px 1px #FFE477;
    font-weight: bold;
    box-shadow: 1px 1px 1px #3D3D3D;
    -webkit-box-shadow:1px 1px 1px #3D3D3D;
    -moz-box-shadow:1px 1px 1px #3D3D3D;
}

.dark-matter .button:hover {
    color: #333;
    background-color: #EBEBEB;
}

/** END: Contact form **/