div {
  text-align: left;
  text-justify: inter-word;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.container-hover {
    position: relative; /* Essential for positioning the paragraph relative to the image */
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container-hover img {
    display: block; /* Removes extra space below the image */
    margin: 0 auto 10px; /* Center the image and add some bottom margin */
    border-radius: 5px;
}

.hover-paragraph {
    font-size: 1.1em;
    color: #004260;
    opacity: 0; /* Start hidden */
    max-height: 0; /* Collapse the element visually */
    overflow: hidden;
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 10px; /* Initial padding of 0 */
    margin-top: 0;
    margin-bottom: 0;
}

/* When the container is hovered, show the paragraph */
.container-hover:hover .hover-paragraph {
    opacity: 1;
    max-height: 300px; /* Adjust as needed for the content of your paragraph */
    padding-top: 10px;
    padding-bottom: 10px;
}
img {
  border-radius: 10px;
}

.center {
  margin-left: auto;
  margin-right: auto;
}
th, td {
  padding-left: 7px; /* Space on the left of cell content */
  padding-right: 7px; /* Space on the right of cell content */
  /* Or a shorthand: padding: 8px 10px; for top/bottom 8px, left/right 10px */
  /*border: 1px solid #ccc; /* Just for visualization */
}