/* from style.css */
/*-- Header Rules --*/
.site-header {
  background-color: rgba(53, 74, 91, 0.9); /* love! this is a homemade color... */
  margin-bottom: none;
  width: 100vw;
  margin-left: -8px;
  margin-top: -8px;
}
.site-header-container {
  padding-left: 40px;
  padding-right: 40px;
}
.site-title {
  color: white;
  font-size: 300%;
  font-family: sans-serif;
  padding-top: 20px;
}
.site-slogan {
  color: white;
  font-family: sans-serif;
  padding-top: 10px;
  padding-bottom: 20px;
}

/*---- Navigation Rules --- */
.nav-tab {
  background-color: rgb(53, 74, 91);
  font-family: sans-serif;
  margin-right: 3px;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
nav ul li {
  float: left;
  color: white;
}
nav ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}
nav ul li a:hover {
  background-color: #111111;
}
button.next {
  border: 1px solid gray;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: gray;
  color: #fff;
  margin-left: 0;
  margin-right: auto;
}
button.next a {
  text-decoration: none;
  color: #fff;
}
button.next:hover {
  background-color: darkgray;
}
nav li.current-page-tab {
  background-color: transparent;
}

/* Homepage specific rules */
body.home {
  background: bottom / cover no-repeat url("../images/900561639-cropped.jpg");
  overflow-x: hidden;
  height: 100vh;
  position: relative;
  margin: 0;
  margin-bottom: 40px;
}
.container.home {
  width: 90%;
  margin: auto;
  padding-left: none;
  background-color: transparent;
}
footer.home {
  position: fixed;
  background-color: rgba(53, 74, 91, 0.5);
  color: white;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 40px;
  box-sizing: border-box;
  padding: 3px;
  margin: 0;
}
.site-header.home {
  background-color: transparent;
}
.site-header-container.home {
  background-color: rgba(53, 74, 91, 0.5); /* love! this is a homemade color... */
  padding-left: 40px;
  padding-right: 40px;
  width: 110%;
}
.site-title.home {
  position: absolute;
  margin-top: 100px;
  color: #fff;
  transition: color 2s;
}
.site-title.home:hover {
  color: cornsilk;
}
.site-slogan.home {
  position: absolute;
  margin-top: 80px;
  color: #fff;
  transition: color 2s;
}
.site-slogan.home:hover {
  color: cornsilk;
}
.myFadeIn {
  opacity: 0;
  animation: fadeIn 2s forwards;
}
.myFadeIn5 {
  opacity: 0;
  animation: fadeIn 5s forwards;
}
.myFadeIn10 {
  opacity: 0;
  animation: fadeIn 10s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.nav-tab.home {
  background-color: transparent;
  font-family: sans-serif;
  margin-right: 3px;
}

.poster {
  margin-top: 150px;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 100px;
  padding: 30px 7% 30px 7%;
  background-color: rgba(255, 255, 255, 0.8);
  font-family: Verdana, Geneva, Tahoma, sans-serif;

  box-sizing: border-box;
}
.poster ul {
  list-style: disc;
}
.poster-highlight-img {
  background: bottom / cover no-repeat url("../images/IMG_6047cropped.jpg");
  overflow-x: hidden;
  height: 50vh;
  margin: 0;
}

/* Responsive Navigation Rules */
@media only screen and (max-width: 500px) {
  li.hide-small {
    display: none;
  }
}
