/* General Styles */
body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	background-color: hotpink;
	color: red;
}

h1, h2 {
	color: red;
	text-align: center;
}

section {
	padding: 50px;
	margin: 20px;
}

.hero {
	background: url('../mem/1.JPG') no-repeat center center/cover;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.hero h1 {
	font-size: 60px;
	color: hotpink;
}

.hero p {
	font-size: 24px;
	color: hotpink;
}

.btn {
	background-color: hotpink;
	color: black;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 25px;
	font-size: 18px;
	margin-top: 20px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.gallery-grid mem {
	width: 100px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#message-wall ul {
	list-style-type: none;
	font-size: 20px;
	text-align: center;
}

#playlist iframe {
	display: block;
	margin: 0 auto;
}

form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

form input, form textarea {
	width: 80px;
	padding: 10px;
	margin: 10px 0;
}

form button {
	background-color: red;
	color: black;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}