	        /* Paste your CSS code here */
			.container {
			    width: 90%; /* Example: Makes the container take up 90% of the viewport width */
			    max-width: 1200px; /* Optional: Prevents the container from getting too wide on very large screens */
			    margin: 0 auto; /* Centers the container */
				padding: 25px;
			}
			
			.container table {
			    margin: 0 auto; /* Centers the table with no additional margin */
			    border-collapse: collapse; /* Ensures that border spacing is removed */
			}

			.container td, .container th {
			    padding: 0; /* Removes padding inside table cells */
			}
			
			.image-container {
			    display: flex;
			    flex-wrap: wrap;
			    justify-content: center; /* Center images and captions in the container */
			    text-align: center; /* Center the text of the captions */
			}
	        
	        .image-container figure {
	            flex: 1 1 auto;
	            max-width: 45%;
	            margin: 5px;
	        }
			.image-container img {
			    width: 100%; /* Makes images responsive within their figure */
			    height: auto; /* Maintains aspect ratio */
			}
			.image-container figcaption {
			    font-weight: bold; /* Makes caption text bold */
			    font-size: 0.9em; /* Reduces the font size of the caption; adjust as needed */
			}
	        @media (max-width: 800px) {
	            .image-container figure {
	                max-width: 100%;
	            }
	        }
			
/*			body {
			    font-size: calc(12px + 1vw); /* Scalable font size */
			}
*/
			@media (max-width: 800px) {
/*			    body {
			        font-size: calc(12px + 0.5vw); /* Less dramatic scaling at smaller widths */
			    }
*/				.container {
			        padding: 25px; /* Medium padding for medium screens */
			    }
			}

			@media (max-width: 600px) {
/*			    body {
			        font-size: 12px; /* Fixed font size for very small screens */
			    }
*/				.container {
			        padding: 10px; /* Reduced padding for small screens */
			    }
			}
			
			/* Styles for bold links */
			.bold-link {
			    font-weight: bold;
			}

			/* Optional: Styles for regular links, if needed */
			.regular-link {
			    font-weight: normal;
			}