body {
  margin: 0;
}
  
/* Dropdown Button */
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
  
/* Dropdown button on hover & focus*/
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content .comicbtn {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content .comicbtn:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

#comicImg{
  height: auto;
  width:   auto;
}
#comicImg2{
  height: auto;
  width:   auto;
}
#comicArea{
  display: none;
}

/* Next & previous buttons */
#prevBtn, #nextBtn {
  cursor: pointer;
  position: absolute;
  top: 0%;
  width: 50%;
  height: 100%;
  color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  transition: 0.6s ease;
  user-select: none;
}
#exitBtn {
  cursor: pointer;
  position: absolute;
  top: 0%;
  width: 100px;
  height: 100px;
  color: rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
  border-style: none;
  transition: 0.6s ease;
  user-select: none;
}

/* Position the "next button" to the right */
#nextBtn {
  right: 0;
}

#exitBtn:hover{
  color: rgba(255,255,255,1);
  background-color: rgba(0,0,0,1);
}

.slidecontainer {
  position: relative;
  z-index: 10;
  width: 99%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}


@media only screen and (max-width: 480px) {
  #comicImg {
    width: 100%;
  }
  #comicImg2 {
    width: 100%;
  }
}
@media only screen and (min-width: 480px) {
  #comicImg {
    height: 100%;
  }
  #comicImg2 {
    height: 100%;
  }
}
  