body {
	min-height: 100vh;
	margin-left:  75px;
	margin-right: 75px;
	background-color: whitesmoke;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

h1 {
	text-align: center;
	margin-bottom: 0px; /* spacing between the line and next content */
}

footer {
	clear: both;
	max-height: 50px;
	text-align: center;
	margin-top: 50px;
	border-top: 2px solid firebrick;
	padding: 25px;
}

header {
	display: flex;
	margin-bottom: 25px;
	flex-direction: column;
} 

/* .header-container {
	display: flex;
	flex-direction: column;
	max-height: 50px;
	border: 10px solid red;
	margin-bottom: 50px;
} */
	

p {
	text-align: justify;
}

main {
	flex-grow; 1;
}

figure {
	margin: 0px;
}

figcaption {
	text-align: center;
	font-size: 12;
}

/* img {
	border: 1px solid lightgrey;
} */

.header-1 {
	display: flex;
	justify-content: flex-end;
	margin-top: 0px;
	margin-bottom: 10px;
}

.home-button {
	font-weight: bold;
	font-size: 18;
	margin-top: 0px;
}


.red-line {
	border: none;
	border-top: 2px solid firebrick;
	margin: 0;
}

.img1 {
	width: 250px;
	float: right;
	margin-left: 25px;
	margin-bottom; 25px;
}

.img2 {
	width: 250px;
	margin-left: 25px;
	margin-bottom; 25px;
	margin-top; 25px;
	border: 1px solid lightgrey;
	float: right;
}

.gasket1 {
	height: 200px;
}

.textbox1 {
	display: flex;
}

#fourier-image {
	display: flex;
	justify-content: center;
	width: 100%;
	border: 1px solid lightgrey;
	margin-bottom: 25px;
}

#fourier-container {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}
	
.img-container {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

.img-box {
	display: flex;
	flex-direction: column;
}

.whitespace {
	flex-grow: 1;
}

.grid-container {
	display: grid;
	grid-template-columns: auto auto;

}

a:link {
	color: midnightblue;
}

a:visited {
	color: midnightblue;
}

a:hover {
	color: cornflowerblue;
}

#circuit-diagram {
	width: 50%;
	justify-content: center;
}

#circuit-diagram-container {
	text-align: center;
}

#gasket-cad {
	border: 1px solid lightgrey;
	width: 50%;
	justify-content: center;
}

#gasket-cad-container {
	display: flex;
	justify-content: center;
}

#gasket-images {
	display: flex;
	justify-content: space-around;
}
	


table {
    border-collapse: collapse; /* Collapses cell borders into a single border */
    margin: 20px auto; /* Centers the table and adds margin */
    background-color: white;
}

th, td {
    border: 1px solid blac; /* Adds borders to cells */
    padding: 5px; /* Adds padding inside cells */
    text-align: left; /* Aligns text to the left */
    width: 100px;
}

th {
    background-color: white; /* Background color for header cells */
    color: black; /* Text color for header cells */
}
