body {

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

/* buttons container - the gray box around the button*/
.container {
  height: 30px;
  position: absolute;
  top: 15px;
  left: 300px;
  border:0;
  margin: auto;
  width: 15%;
  background-color: #A52A2A; /* Dark Red/Maroon So we can see it */
  border: 1px solid #ddd; /* yea! I added this */
  border-radius: 4px;
}

/* stuff */
.vertical-center {
 margin: 0;
 position: absolute;
 top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* header stuff */
.header {
  position: sticky;
  top: 0;
  padding: 10px 16px;
  background: #555;
  color: #f1f1f1;
}

/* paragraph stuff */
p {
margin: 15px; /* Adds 15 pixels of margin on all sides */
/* OR, for individual sides: */
/* margin-top: 10px;
margin-right: 20px;
margin-bottom: 15px;
margin-left: 25px; 
margin: 10px 20px;  (10px top/bottom, 20px left/right) */
}

/* box  stuff */
.container {
    display: flex; /* Use flexbox for the container */
    flex-wrap: wrap; /* Allow boxes to wrap to the next line */
    gap: 20px; /* Space between the boxes */
    justify-content: center; /* Center boxes within the container */
    max-width: 1200px; /* Optional: set a max-width for the container */
    padding: 20px; /* Add some padding around the container */
}

/* big box stuff */
.box {
    background-color: rgba(255, 255, 128, 0.5);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 4px 8px rgba(0, 0, 0, 0.1);
    width: 590px; /* Set a fixed width for each box */
    /* Or use flex-basis for more responsive width, e.g., flex-basis: calc(33.33% - 20px); */
    text-align: left; /* Center the text within the box */
    margin-left: 25px; 
}

/* text in the big box stuff */
.box p {
    font-size: 1.1em;
    color: #333;
    margin: 0; /* Remove default paragraph margin */
}

.box p i {
    font-style: italic; /* Explicitly set to italic, though `<i>` tag does this by default */
    color: #555; /* Slightly different color for italic text */
}
