/* Basic Styling */
body {
    font-family:  Roboto, arial, sans-serif;
	background-color: rgb(18, 18, 18);
	color: rgb(188, 192, 195);
	font-size: 14px;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

.spacer_div {
	display: block;
	height: 20px;
}

.quote_container {
	background-color: rgb(30, 31, 32);
	max-width: 340px;
	padding: 12px;
	border-radius: 10px;
	text-align: center;
	margin: 0 auto;
}

.quote_text {
	width: 100%;
	text-align: center;
	font-size: 16px;
	padding-bottom: 6px;
}

.quote_attr {
	width: 100%;
	text-align: right;
	font-size: 14px;
}

a {
	color: rgb(153, 195, 255);
}

p {
	line-height: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}

h1 {
    text-align: center;
	margin-bottom: -2px;
}

h3 {
	text-align: center;
	padding-bottom: 6px;
	font-weight: 500;
}

h4 {
	margin-top: -2px;
	margin-bottom: -8px;
	margin-left: 28px;
	font-size: 16px;
	color: rgb(148, 149, 150);
}

li {
	list-style-type: disc;
	padding-bottom: 20px;
	padding-left: 16px;
	line-height: 20px;
	-webkit-font-smoothing: antialiased;
}

br {
	content: "A" !important;
	display: block !important;
	margin-bottom: .5em !important;
}

.chronology_div {
	padding-bottom: 28px;
}

.chronology_entry {
	margin-left: 28px;
	margin-top: 12px;
}

.artifact_div {
	padding-left: 40px;
	padding-top: 0px;
}

.artifact_text {
	font-style: italic;
}

/* Image Styling */
.image-container {
    display: flex;
    flex-wrap: wrap; /* Allow images to wrap to the next line */
    justify-content: left;
}

.image-container img {
    max-width: 500px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.supplemental_entry {
	display: block;
	padding-left: 28px;
	margin-bottom: 22px;
}

/* Responsive Design */
@media (max-width: 768px) { 
    /* Styles for tablets and smaller screens */
    .container {
        padding: 10px;
    }

    .image-container img {
        width: 48%; /* Adjust as needed */
    }
}

@media (max-width: 480px) { 
    /* Styles for mobile phones */
    .image-container img {
        width: 100%;
    }
}