@charset "utf-8";
/* CSS Document */
.image-row {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	width: 100%
}
.big-image {
	flex: 3;
}
.small-image {
	flex: 2;
}
.image-row img {
	width: 100%;
	height: auto;
	display: block;
	margin: 20px, 20px, 20px, 20px;
	border-radius: 8px;
	border-style: groove;
	border-width: 6px;
	border-color:#7C7F8;
}
.image-row h2 {
	margin-top: 10px;
	font-family: Impact;
	font-size: 30px;
	align-itenms: center;
	padding: 10px;
}
.image-row p {
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	font-family: Lucida Sans Unicode;
	font-size: 14px;
	padding: 5px;
}
.nav-link {
	font-family: Lucida Sans Unicode;
	color:#000000;
	font-size: 18px;
}
h1 {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	font-size: 40px;
	font-style: italic;
}
body {
	background-image: url('../images/newsbg.jpg');
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 0;  
	min-height: 100vh;
}
.founder-box {
	display: flex;
	gap: 20px;
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
}
.founder-image {
	width: 350px;
	height: 500px;
	flex-shrink: 0;
	margin: 20px;
	border-radius: 8px;
	border-style: groove;
	border-color: #7C7F8; 
}
.founder-text {
	flex: 1;
}
h2 {
	margin-top: 10px;
	font-family: Impact;
	font-size: 30px;
	align-items: center;
	text-align: center;
	padding: 10px;
}
p {
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	font-family: Lucida Sans Unicode;
	font-size: 14px;
	padding: 5px;
}
.image-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	width: 100%
}
.grid-cell {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.grid-cell img {
	width: 300px;
	height: 350px;
	display: block;
	object-fit: cover;
	border-radius: 8px;
	border-style: groove;
	border-color: #7C7F8;
}
.bottom-center {
	grid-column: 1 / span 2;
	justify-self: center;
	width: 50%
}
.breaking-news {
	font-family: Monaco;
	font-size: 50px;
	color:#880A0D;
	font-style: italic
}










