@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo+Narrow:wght@400&display=swap');

/* 1. Margin at the top of the screen */
.page-wrapper {
  margin-top: 60px; 
  display: flex;
  justify-content: center;
}

/* 2. The Scrollable Rectangle Border */
.osaka-post-container {
  width: 900px;
  height: 550px; /* Adjust this to change the rectangle's height */
  border: 1px solid #000;
  padding: 40px;
  background-color: #e26329;
  
  /* This makes the content scroll inside the border */
  overflow-y: auto; 
  overflow-x: hidden;
}

.track-container {
  overflow: hidden; /* Hides the slides that aren't active */
  width: 100%;
  position: relative;

  
}

.carousel {
  border: 1px solid #333;   /* Rounded corners */
  padding: 5px;           /* Background color of the frame */
  
  position: relative;
  width: 600px;  
  height: 500px;           /* Set a fixed width or 100% */
  margin: 0 auto;           /* Centers it on the page */

 overflow-y: auto; 
  overflow-x: hidden;
}

.carousel-controls {
  position: absolute;
  bottom: -40px;      /* Adjust this to move it up/down on your border */
  width: 100%;        /* Makes the container span the whole width */
  display: flex;      /* Enables Flexbox */
  justify-content: center; /* Centers the buttons horizontally */
  gap: 20px;          /* Adds perfect spacing between the two buttons */
  pointer-events: none; /* Prevents the invisible container from blocking clicks */
}

.track {
  display: flex; 
  list-style: none;
  padding: 0;
}

.slide {
  min-width: 100%; /* Each slide takes up the full width of the window */
}

/* 3. The Stretched Header */
.main-title {
  font-family: cursive;
  font-size: 40px;
  color: #edcdbc;
  margin: 0;
  text-transform: uppercase;
  display: inline-block;
  
  /* Stretched on X and Y axis */
  transform: scale(1, 1.5); 
  transform-origin: left top;
  
  letter-spacing: -4px;
}

.header-group {
  padding-top: 20px;
  margin-bottom: 30px; /* Space for the Y-axis expansion */
}

.date-stamp {
  font-family: cursive;
  color: #000000;
  font-size: 14px;
  margin-top: 10px;
}

.author {
  font-family: cursive;; 
  color: #edcdbc;
  font-size: 20px;
  margin-top: 0px;
}

.content-body p, .track-container, li {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  line-height: 1.1;
  color: #edcdbc;
  text-align: justify;
}

.back-home {
    font-family: cursive;
  display: block;
  width: fit-content;
  margin: clamp(10px, 3vw, 30px) auto;

  text-decoration: none;
  color: #edcdbc;

  font-size: clamp(0.8rem, 1.2vw, 1rem);
  letter-spacing: 1px;

  border: 1px solid #000000;
  padding: 8px 16px;

  transition: 0.25s;
}

.back-home:hover {
  background: #000000;
  color: white;
}

.footer {
  font-family: 'arial', sans-serif;
  font-size: 40px;
  color: #f590e0;
  font-size: 20px;
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center; 
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom:10px;

}

.bookcover {
    width: 300;
display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; /* Keeps the image responsive */
}

.description{
    font-family:'Courier New', Courier, monospace;
  font-size: 24px;
  line-height: 1.1;
  color: #edcdbc;
  text-align:center;
  padding-top: 20px;
  padding-left: 2%;
  padding-right: 2%;
  padding-bottom:50px;
  font-size: 20px;
}

.review{
    font-family: cursive;
  font-size: 40px;
  color: #edcdbc;
  text-transform: uppercase;
  transform: scale(1, 1.5); 
  text-align: center;
  transform-origin: left top;
  
  letter-spacing: -4px;
    
}
