/* General Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans", sans-serif;
}

body {
	background-color: #f4f4f4;
	color: #000;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

ul {
	list-style-type: none;
}
/* Header & Navigation */
header {
	background: #222222;
	padding: 15px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
	display: flex;
	align-items: center;
}

nav .logo img {
	height: 50px;
	transition: transform 0.3s ease;
}

nav .logo img:hover {
	transform: scale(1.1);
}

nav button {
	background: transparent;
	border: none;
	cursor: pointer;
	margin-left: 20px;
	transition: transform 0.3s;
}

nav button:hover {
	transform: scale(1.1);
}

/* Main Content */
main {
	text-align: center;
	padding: 50px 20px;
	flex-grow: 1;
	min-height: 100vh;
}

a {
	color: #352929;
	text-decoration: none;
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #000000;
	margin-bottom: 40px;
	animation: fadeIn 1s ease-in-out;
}

article {
	background: white;
	padding: 20px;
	margin: 20px auto;
	max-width: 600px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

article:hover {
	transform: translateY(-5px);
}

article h2 {
	color: #000000;
	margin-bottom: 10px;
}

/* Footer */
footer {
	background: #222222;
	color: white;
	text-align: center;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

footer article > * {
	color: #000000;
	max-width: 250px;
}

footer a {
	color: #040404;
	text-decoration: none;
	transition: color 0.3s;
}

footer a:hover {
	color: #16a085;
}

.copyright-footer {
	background: #1a252f;
	color: #ffffff;
	text-align: center;
	padding: 10px;
	font-size: 0.9rem;
}

.copyright-footer > p > a {
	color: rgb(207, 207, 207);
}

.copyright-footer > p > a:hover {
	color: rgb(100, 85, 85);
}
/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
