* {box-sizing:border-box}
h1 {
  display: block;
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  font-weight: bold;
}
.content-wrapper {
  flex-direction: column;  
  align-items: center; /* Aligns items vertically */
  padding: 20px;  
  margin: auto;
}
body{
  padding-top: 80px;  
  
  
}

.title-price-container{
  background-color: beige;
  box-sizing: border-box;
  max-width: 500px;
  position: center;
  margin: auto;  
  
}
.title {  
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  max-width: 500px;
  margin: 10px;
  /*flex: 1; /* Makes the title take available space */
}
.price{
    box-sizing: border-box;
    font-size: 1.3rem;
    font-weight:medium;
    text-align: left;
    max-width: 500px;
    margin: 10px;    
}

/* Slideshow container */
.slideshow-container {
  max-width: 500px;
  position: relative;
  margin: auto;  
}
.zine-details{  
  margin: auto;
  background-color: beige;  
  padding: 10px;
  max-width: 500px;   
  
}
.zine-description{
  margin:auto;
  max-width: 500px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}
/* 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: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  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 */
.fades {
  animation-name: fade;
  animation-duration: 2.5s;
}

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