/* Import the Google Fonts font used for this site. */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: SlateGray;
	/* background-image: url("bg.jpg") */
}

.header {
	background-color: White;
	padding-top: 40px;
	padding-bottom: 40px;
	display: flex; /* Put all the header sections in a horizontal row. */
	align-items: center; /* Vertically center all sections. */
	justify-content: space-between; /* Place left and right elements at absolute edge of the container. */
	/* width: 100%; */
	/* box-sizing: border-box; */
}

/* Apply 10% padding (or spacing) to the left and right containers */
.header-side.left {
	padding-left: 10%;
}

.header-side.right {
	padding-right: 10%;
}

/* Ensure images don't overflow and scale nicely */
.header-side img {
	display: block;
	max-height: 50px; /* Adjust height as needed */
	width: auto;
}

/* Center the navigation links */
.header-nav {
	display: flex;
	gap: 2rem; /* Adjust space between the four links */
}

.header-nav a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
}

.header-nav a:hover {
	color: #007bff; /* Optional hover effect */
}

.row {
	padding-top: 3%;
	padding-left: 10%;
	padding-right: 10%;
}

/* Create two unequal columns that float next to one another. */
.left-column {
	float: left;
	width: 75%;
}

.right-column {
	float: left;
	width: 25%;
	padding-left: 20px;
}

/* Fake image */
.fakeimg {
	background-color: Gainsboro;
	width: 100%;
	padding: 20px;
}

/* Add a card effect for articles */
.card {
	border-radius: 25px;
	background-color: White;
	padding: 30px;
	margin-top: 20px;
	box-shadow: 5px 5px 5px rgb(0 0 0 / 20%);
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Footer */
.footer {
	padding: 30px;
	background-color: #2C3741;
	margin-top: 20px;
}

/* This is for the text that titles posts. */
.text-header {
	color: #253352;
	font-family: Verdana;
	font-weight: bold;
	padding-bottom: 10px;
}

/* This is for the text below the title of a post: "September 10, 2020" or whatever. */
.text-secondaryheader {
	color: Gray;
	font-family: Verdana;
	padding-bottom: 10px;
}

.text-quotebubble {
	font-family: "PT Serif", serif;
	font-style: italic;
	font-size: 20px;
	padding: 20px;
	border-radius: 10px;
	color: SaddleBrown;
	background-color: AntiqueWhite;
	line-height: 1.4;
}

/* This is for standard, in-bubble text. */
.text {
	font-family: "PT Serif", serif;
	font-size: 20px;
	padding-bottom: 10px;
	line-height: 1.4;
}

.image {
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100%;
}

.image-center {
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;"
}

/* When the screen is less than 800 px wide, make the content columns stack ON TOP instead of NEXT to each other. */
@media screen and (max-width: 800px) {
	.leftcolumn, .rightcolumn {
		width: 100%;
		padding: 0;
	}
}