.image-row {
	display: flex;
	justify-content: space-around;
	margin: 20px 0;
}

.image-row img {
	margin: 0 5px;
}/* Basic Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f8f8;
	width: 100%;
	margin: 10px;
	padding: 20px;
}

h1 {
	text-align: center;
	margin-bottom: 15px;
	color: #444;
}

nav {
	text-align: center;
	margin-bottom: 20px;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

nav ul li {
	margin-right: 20px;
}

nav ul li a {
	text-decoration: none;
	color: #333;
	font-weight: bold;
}

nav ul li a:hover {
	color: #555;
}

main {
	margin-bottom: 30px;
}

section {
	margin-bottom: 30px;
	padding: 20px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
	margin-bottom: 15px;
	color: #444;
}

footer {
	text-align: center;
	padding: 20px;
	background-color: #f4f4f4;
	border-radius: 5px;
	margin-top: 30px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 15px 0;
}

figure {
	margin: 20px 0;
	text-align: center;
}

figcaption {
	font-style: italic;
	margin-top: 5px;
}

audio {
	width: 100%;
	margin: 15px 0;
}