body {
  background-color: #242f44;
  color: white;
    font-family: 'Oswald', sans-serif;
}

header {
  text-align: center;
  margin-top: 5px;
}

h1 {
  font-size: 36px;
  padding: 15px;
  color: #8c6b48;
  background-color: white;
}

h2 {
  font-size: 24px;
  padding: 15px;
  text-transform: uppercase;
}

h3 {
  font-size: 20px;
  padding: 15px;
  text-transform: uppercase;
  text-align: left;
  margin-left: 20px;
  font-weight: 500;
  line-height: 2.7;
  letter-spacing: 0.8px;
}

th {
  border: 2px solid #8c6b48;
}

table {
  text-align: center;
  margin: 20px auto;
  width: 100%; /* Make the table take up the full width of its container */
  table-layout: fixed; /* Distribute column widths evenly or as defined */
}

td {
  border: 2px solid #8c6b48;
  /* Remove or comment out fixed width: 300px; */
  /* width: 300px; */
}

footer {
  margin-top: 50px;
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 5px;
  background-color: #242f44;
  z-index: 5;
}
footer h3 {
  display: inline-block;
  font-size: 14px;
  background-color: #242f44;
}

.container {
  max-width: 940px;
  margin: 0 auto;
  height: 800px;
}


.left {
   width: 30%; /* Make the time column take up 30% of the table width */
  /* The other column will automatically take the remaining 70% due to table-layout: fixed */
}

/* Adjust h3 within table cells to reduce vertical space and better alignment */
td h3 { /* Target h3 elements specifically within table data cells */
  font-size: 16px; /* Slightly smaller font for better fit */
  padding: 5px; /* Reduce padding */
  line-height: 1.5; /* More natural line height */
  margin-left: 0; /* Remove left margin that was pushing text */
  text-align: center; /* Center align text for better table presentation */
}
