/* EuroPython modifications of the Massively CSS, with added slider */

#wrapper {
  padding: 0;
  margin: auto;
  height: 100vh;
  width: 100vw;
  background-size: cover;
  background-attachment: fixed;
  overflow-y: scroll;
}

#intro {
  max-width: 100%;
}

#intro p br {
  display: inline;
}

@media screen and (max-width: 980px) {
  #intro .actions {display: none}
}

#copyright {
  color: white;
}

.slideshow {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.slide {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding-top: 7em;
  overflow: hidden;
  display: block;
  opacity: 0;
  no-repeat center center;
  background-size: cover;

  transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
}

.slide p a {
  text-decoration: underline;
}

.active {
  opacity: 1;
  z-index: 1;
}

.actions a {
  z-index: 1;
}
