/* Move down content because we have a fixed navbar that is 50px tall */
html {
  position: relative;
  min-height: 100%;
}

body {
  padding-top: 50px;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.container {
    max-width: 1000px
}

/* Jumbotron */
.jumbotron {
    height: 400px;
    background-image: url("./img/jumbotron.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 55% 50%;
    text-shadow: -1px -1px #FFFFFF;
    position: relative;
}

.jumbotron > .container {
    margin-top: 150px;
    max-width: 1000px
}

.jumbotron p {
    text-shadow: -1px -1px #FFFFFF;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 40px;
  background-color: #f5f5f5;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

.container .text-muted {
  margin: 10px 0;
}

/* Navbar */
.navbar-inverse .navbar-brand {
    color: #fff;
}

/* Color of the active element in the dropdown menue */
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    color: #fff;
    background-color: #555;
}

img {
    width: 100%;
}
.row {
    margin-top: 60px;
    margin-bottom: 60px;
}

.even > .col-md-4 {
    float: right;
}
.even > .col-md-8 {
    float: left;
}

.odd > .col-md-4 {
    float: left;
}
.odd > .col-md-8 {
    float: right;
}

.right {
    float: right;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding-right: 0px;
}

.left {
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
    padding-left: 0px;
}

.preformated {
    white-space: pre-line;
}
.description {
    margin-top: 20px;
    margin-bottom: 50px;
}

/* Links */
a,
a:focus,
a:hover {
  color: #707070;
}

.footnote {
    list-style-type: none;
    font-size: smaller;
}

/* fixing things for small screens */
@media all and (max-width: 768px) {
    .jumbotron {
        height: 250px;
        font-size: small;
    }
    .jumbotron > .container {
      position: absolute;
      bottom: 0px;
    }
}
/*@media (min-width: 992px) {
}*/

