@font-face {
	font-family: 'Handlee';
	src: url('/fonts/Handlee/Handlee-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

body {
	margin: 0;
	font-family: 'Arial', cursive;
	background: #eceff0;
	color: #333;
}

header {
    background: #547a88;
    color: white;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
	font-size: 1.5rem;
	margin: 0;
}

header h1 a {
	color: white;
	text-decoration: none;
}

.menu-toggle {
	background: none;
	border: none;
	color: white;
	font-size: 2rem;
	cursor: pointer;
}

nav {
	background: #547a88;
	display: none;
	flex-direction: column;
}

nav.active {
	display: flex;
}

nav a {
	color: white;
	text-decoration: none;
	padding: 1rem;
	border-top: 1px solid grey;
}

nav a:hover {
	background-color: #36515e;
}
	
.main-section {
	display: flex;
	justify-content: center;
	gap: 2rem;
	max-width: 1000px;
	margin: 2rem auto;
	flex-wrap: wrap;
}

.content {
	padding: 2rem;
	background: white;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	text-align: center;
	width: 430px;
}

.title-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
}

.image-caption {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.7);
	color: #333;
	text-align: center;
	font-weight: bold;
	font-size: 1rem;
	padding: 0.5rem;
	backdrop-filter: blur(5px);
}

.highlight {
	color: #204070;
	font-weight: bold;
}

.info {
	margin-top: 1.5rem;
	font-size: 1rem;
}

.image-wrapper {
	position: relative;
	max-width: 889px;
	margin: 1.5rem auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.topic-header {
	font-family: 'Handlee', cursive;
	color: #81a8ab;
	font-size: 3.0rem;
	margin: 0px;
	margin-top: 35px;
	text-align: center;
	position: auto;		
}

.topic-list {
	text-align: center;
	position: auto;
}

.date {
	font-family: 'Handlee', cursive;
	font-size: 1.2rem;
	margin-top: 25px;
}

.topic {
	font-family: 'Arial';
	font-size: 1.8rem;
	font-weight: regular;
	color: #81a8ab;
}
	
.playmp3 {
	color: #587e81;
}

.vl {
	margin-bottom: 30px;
}

footer {
	text-align: center;
	margin-top: 3rem;
	font-size: 0.9rem;
	color: #585849;
	padding-bottom: 1rem;
}