@font-face {
    font-family: almendra-regular;
    src: url("../fonts/almendra/Almendra-Regular.otf") format("opentype");
}

@font-face {
    font-family: silkscreen-regular;
    src: url("../fonts/Silkscreen/slkscr.ttf");
}

.comicBody {
    background-image: url(../img/universe.jpeg);
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.comicBodySpooky {
    background-image: url(../img/RedSpace.jpg);
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.almendra { 
    font-family: almendra-regular;
}

.silkscreen {
    font-family: silkscreen-regular;
    color: white;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

h1{
     word-wrap: break-word;
     -webkit-hyphens: auto;
     -moz-hyphens: auto;
     -ms-hyphens: auto;
     -o-hyphens: auto;
     hyphens: auto;
}

h2 {
    text-align: center;;
}

h3 {
    text-align: center;
    font-size: 4em;
    color: white;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

a {
    color: white;
    
}

a:hover {
    color: red;
}

.stickyNav {
    z-index: 5000;
    font-size: 33px;
    background-color: none;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 50px;
    text-align: center;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
}

.stickyNav2 {
    z-index: 5000;
    font-size: 16px;
    background-color: none;
    margin-left: 0px;
    margin-right: 0px;
    text-align: center;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
}
.img {
    max-width: 100%;
    height: auto;
    pointer-events: none;
}

.imgArc {
    max-width: 30em;
    max-height: 30em;
}

.arcs {
    margin: 1em;
    display: inline-block;
}

.caption {
    display: block;
    text-align: center;
    font-size: 2em;
    margin-left: -0.5em;
    margin-right: -0.5em;
}

/* SLIDESHOW SHIT */
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 3%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 3em;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;

}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


/* TOP BUTTON */
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 10000; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

.navigationButtons {

  text-align: center; 
  margin-left: 19em; 
  margin-right: 19em;
}

.author {
  color: white !important; 
  text-align: left; 
  font-size: 1.2em; 
  background-color: black;
  padding: 1.2em;
}

