@font-face {
  font-family: OpenSans-Bold;
  font-display: auto;
  src: url(../fonts/OpenSans-Bold.ttf);
}
html{width:100%; height:auto; background-color:#262626; font-family:OpenSans-Bold; text-align:center;}
header{max-width:800px; height:auto; margin: auto;}
header h1{color:white; font-size:2em; padding: 15px 0 0 0; line-height:1.15;}
header h2{line-height:1;}
header h2 a{display:inline-block; width:100px; padding:10px 0 15px 0;}
header img{max-width:100%; width:800px;}
@media screen and (max-width: 600px) {
	header h1{color:white; font-size:5.3vmin; padding: 15px 0 0px 0; line-height:1.15;}
}
.slideshow {
  position: relative;
  width: 800px;
  max-width: 100%;
  margin: auto;
}

.slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow .slide.active {
  opacity: 1;
}

/* Modal container */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content box */
.modal-content {
  background-color: rgba(255,255,255, 0.8);
  margin: 15% auto;
  padding: 20px;
  border-radius: 5px;
  width: 300px;
  text-align: center;
  border: 1.5px solid #000000;
  
}

/* Buttons */
#noButton {
  margin: 20px 10px 0px;
  padding: 10px 20px;
  background-color: #008cba70;
  color: white;
  border: 1px solid #008cba;
  border-radius: 3px;
  cursor: pointer;
  font-size:1.1em;
  text-shadow: 1px 1px 1px #00000085;
}

#yesButton {
  margin: 20px 10px 0px;
  padding: 10px 20px;
  background-color: #b72e2e70;
  color: white;
  border: 1px solid #b72e2e;
  border-radius: 3px;
  cursor: pointer;
  font-size:1.1em;
  text-shadow: 1px 1px 1px #00000085;
}

#yesButton:hover {
  background-color: #b72e2e;
}

#noButton:hover {
  background-color: #008cba;
}