/* General Styles */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	text-align: center;
	background-color: #f4f4f4;
	padding: 20px;
}

/* Responsive Container */
div, section {
	max-width: 900px;
	margin: 0 auto;
	padding: 10px;
}

/* Profile Image */
img {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Links */
a {
	display: inline-block;
	margin: 10px 0;
	text-decoration: none;
	color: #007acc;
	font-size: 1.1em;
}

a:hover {
	text-decoration: underline;
}

/* Headings */
h1 {
	margin-bottom: 10px;
	font-size: 2.5em;
}

h3 {
	font-size: 1.6em;
	margin-bottom: 15px;
}

/* Slideshow */
#slideshow img {
	width: 100%;
	max-height: 500px;
	object-fit: contain;
	border-radius: 10px;
}

#slideshow button {
	font-size: 1.4em; /* was 1.2em */
	padding: 12px 24px; /* was 8px 16px */
	margin: 10px 8px;
	cursor: pointer;
	border: none;
	background-color: #007acc;
	color: white;
	border-radius: 10px;
	transition: background 0.3s ease, transform 0.2s ease;
}

#slideshow button:hover {
	background-color: #005fa3;
	transform: scale(1.05);
}

/* Responsive Text Formatting */
p {
	line-height: 1.6;
	font-size: 1.05em;
	margin: 10px 0;
	padding: 0 10px;
}

/* Responsive Image Container */
.profile-container {
	width: 200px;
	height: 200px;
	overflow: hidden;
	border-radius: 25%;
	margin: 0 auto 20px;
}

/* Media Queries */
@media (max-width: 600px) {
h1 {
	font-size: 2em;
}

#slideshow img {
	max-height: 300px;
}

p {
	font-size: 1em;
}

#slideshow button {
	font-size: 1.2em; /* was 1em */
	padding: 10px 20px; /* was 6px 12px */
}

.profile-container {
	width: 150px;
	height: 150px;
}
}

.video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 ratio */
	height: 0;
	overflow: hidden;
	border-radius: 10px;
	margin-top: 20px;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
