body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: #28f3b9;
  font-family: "Times New Roman", Times, serif
  line-height: 1.6
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.main-image {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 2rem auto;
}

.buttonClass {
  font-size:15px;
  font-family:Courier New;
  width:140px;
  height:50px;
  border-width:1px;
  color:rgba(0, 0, 0, 1);
  border-color:rgba(255, 255, 255, 1);
  font-weight:bold;
  border-top-left-radius:18px;
  border-top-right-radius:18px;
  border-bottom-left-radius:18px;
  border-bottom-right-radius:18px;
  box-shadow: 3px 4px 0px 0px rgba(168, 166, 166, 1);
  background:rgba(40, 243, 185, 1);
  display: block;
  margin: 20px auto;
  align-items: center;     
  justify-content: center;
  text-align: center;
}

.buttonClass:hover {
  background: rgba(255, 255, 255, 1)
}

#comic-image {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.comic-viewer {
  text-align: center;
}

.comic-controls {
  margin-top: lrem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.comic-controls button:hover {
  background: #9AD1FF;
  color: #000;
}

.text-overlay {
    position: absolute;  
    top: 20%;           
    left: 80%;          
    right: 25%;         
    bottom: 30%;
    font-size: 16px;
}

@media (max-width: 768px) {
    .text-overlay {
        font-size: 12px;  
        padding: 10px;    
        left: 10%;
        right: 10%;
    }
}
