
@import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&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: #ff2bd6;
  
  /* This makes the content scroll inside the border */
  overflow-y: auto; 
  overflow-x: hidden;
}


/* 3. The Stretched Header */
.main-title {
  font-family:'Bitcount Grid Double';
  font-size: 70px;
  color: #2cdc03;
  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: 'Bitcount Grid Double';
  transform: scale(1, 1.5); 
  color: #2cdc03;
  font-size: 20px;
  margin-top: 10px;
}

.content-body p, li {
  font-family: 'Bitcount Grid Double';
  font-size: 24px;
  line-height: 1.1;
  color: #000000;
  text-align: justify;
}

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

  text-decoration: none;
  color: #5fd000;
font-family: 'arial';
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  letter-spacing: 1px;

  border: 1px solid #5fd000;
  padding: 8px 16px;

  transition: 0.25s;
}

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

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

}

table {
  width: 100%;
  border-collapse: collapse; /* Merges borders */
  table-layout: fixed;       /* Faster rendering */
}

th, td {
  font-family:Arial, Helvetica, sans-serif;
  padding: 12px;             /* Interior spacing */
  border-bottom: 1px solid #ddd; /* Divider lines */
  text-align: left;
}

thead {
  font-family:Arial, Helvetica, sans-serif;
  background-color: #f2f2f2; /* Distinct header color */
}

tbody tr:nth-child(even) {
  font-family:Arial, Helvetica, sans-serif;
  background-color: #f9f9f9; /* Zebra striping */
}

tbody tr:hover {
  background-color: #f1f1f1; /* Interactive highlight */
}
