body {
	font-family: Arial, sans-serif;
	background: #f4f4f4;
	margin: 0;
}

.container {
	max-width: 900px;
	margin: 40px auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	padding: 32px;
}

h1 {
	text-align: center;
	color: #2d3a4b;
}

.event-list {
	margin-top: 32px;
}

.event {
	display: flex;
	align-items: flex-start;
	background: #f9f9f9;
	border-radius: 8px;
	margin-bottom: 24px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
	padding: 20px;
}

.event img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
	margin-right: 24px;
	border: 2px solid #e0e0e0;
}

.event-details {
	flex: 1;
}

.event-title {
	font-size: 1.3em;
	color: #1a2233;
	margin: 0 0 8px 0;
}

.event-presenter {
	color: #888;
	font-size: 0.98em;
	font-weight: bold;
}

.event-date {
	color: #888;
	font-size: 0.98em;
	margin-bottom: 10px;
}

.event-description {
	color: #333;
}

.member-list {
	display: grid;
	justify-content: space-evenly;
	grid-template-columns: 300px 300px;
	align-items: stretch;
	align-self: center;
}

.member {
	display: block;
	align-items: start;
	background: #f9f9f9;
	border-radius: 8px;
	margin-bottom: 24px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
	padding: 20px;
}

.member img{
	width: 288px;
	height: 360px;
	object-fit: cover;
	border-radius: 8px;
	margin-right: 24px;
	border: 2px solid #e0e0e0;
}

nav {
	background-color: #003d7a;
	padding: 0.625rem 0;
	margin-bottom: 2rem;
	text-align: center;
}
nav a {
	color: #fff;
	text-decoration: none;
	padding: 0.625rem 1.25rem;
	margin: 0 0.625rem;
	border-radius: 0.25rem;
	transition: background 0.3s;
	display: inline-block;
}
nav a:hover {
	background-color: #1a2233;
}

@media (max-width: 600px) {
	.event {
		flex-direction: column;
		align-items: center;
	}
	.event img {
		margin-bottom: 16px;
		margin-right: 0;
	}
}
