body {
    border : 8px solid #000000;
    display: flex; 
    flex-direction: column;
    background-color: black;
    font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
    color: white;

}
header{
    background-color: rgb(66, 7, 8);
    text-align: center;
    padding: 20px;
    font-size: 10px;
    font-weight: bold;
}
.main{
   
    background-color: rgb(39, 43, 45);
    text-align: center;
    padding: 20px;
    font-size: 30px;
    font-weight: bold;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    
   
}
footer{
    background-color: rgb(10, 45, 89);
    text-align: center;
    padding: 10px;
    font-size: 10px;
    font-weight: bold;
}
.box{
  
    width: 90%;
}

.manga_title{
  display : block;
  text-align: left;  
   text-decoration: underline;
    padding: 0px 10px;
   margin-bottom: -10px;

}
.manga_discritpion{
    text-align: left;
    font-size: 18px;
    padding: 10px; 
}
.gallery{
    display : grid;
    grid-template-columns: repeat(2, 1fr);
    gap : 10px ; 
    padding: 5px;
    justify-content: center;
    align-items: center;
}
.manga_tags{
  padding: 15px;
  color: rgb(125, 15, 15);
}
.image_manga{
    border: 2px solid black;
    height: 100%;
    width: 100%;
    object-fit: cover;

   
    
}

.social-icons img {
  width: 30px;
  margin: 0 10px;
  vertical-align: middle;
}

/* Mobile view adjustments */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .main {
    padding: 10px;
    font-size: 18px;
  }

  .box {
    width: 100%;
  }

 
  .gallery {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory; /* optional: snap to each image */
  }

  .gallery img {
    flex: 0 0 80%; /* show one image mostly at a time */
    max-height: 300px;
    object-fit: cover;
    scroll-snap-align: center;
    border-radius: 5px;
  }

 
}