@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
/* Style of the site */
body {
  height: 100vh;
  padding: 0;
  font-family: 'Montserrat';
  background-color: black;
}

/* Style for the header */
.header {
  overflow: hidden;
  background-color: #28245C;
  padding: 20px 10px;
}

/* Style for the header links */
.header a {
  float: left;
  color: #D5CDBF;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #D5CDBF;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: #ED2024;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}

.social-header {
  display: block;
  padding: 2em 4em 2em 0;
}

.social-header ul {
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 7em;
  float: right;
}

.social-header ul img {
  width: auto;
}

/* Style for the home content */

.splash {
  background-color: white;
  text-align: center;
  color: white;  
}


/* Style on others-columns */
.others {
  background-color: white;
  text-align: center;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
  padding: 40px;
}

.others p {
  text-align: center;
}

.column {
  width: 50%;
  float: left;
  padding: 50px;
  border-right: 3px solid #b9b9ce;
}

.column1 {
  width: 50%;
  float: left;
  padding: 50px;
  border-right: 3px solid #b9b9ce;
}

/* Style of social header */
ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Style of comic page */
.coleccion {
  background-color: white;
  text-align: justify;
  font-size: 20px;
  padding: 50px;
  -webkit-box-pack: justify;
}

.subcoleccion {
  background-color: white;
  text-align: justify;
  font-size: 20px;
  padding: 50px;
  -webkit-box-pack: justify;
}

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

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* 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(145, 145, 145, 0.8);
}

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

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

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

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

/* 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;
  }
}