html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #3381c1; 
}

.navbar {
	background-color: #000000;
	padding: 10px 20px;
	display: flex;
	justify-content: flex-start; 
	align-items: center;
	position: relative;
	justify-content: space-between;
}

.navbar h2 {
	color: #fff;
	margin: 0;
	font-size: 1.5rem;
	position: absolute;
	left: 50%; 
	transform: translateX(-50%);
	margin-left: auto;
    margin-right: auto;
}

.nav-links {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 100;
	padding-top: 60px;
	justify-content: space-evenly;
	align-items: flex-start;
	padding: 15px 20px;
}

.nav-links.active{
	display: flex;
}

.logo {
    max-height: 50px;
    width: auto;
}

.nav-links a {
	display: block;
	color: #fff;
	text-decoration: none;
	font-size: 1.5rem;
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #555;
}

.nav-links a:hover {
	background-color: #70d6f3;
	color: #000000;
}

.hamburger {
	display: flex;
	flex-direction: column;
	cursor: pointer;
	position: relative;
	z-index: 101;
	transition: 0.3s ease;
}

.bar {
	width: 30px;
	height: 4px;
	background-color: #fff;
	margin: 6px 0;
}

@media (max-width: 768px) {
	.nav-links.active {
		display: flex;
	}

	.container {
		padding: 10px;
	}

	.image-gallery {
		flex-direction: column;
		align-items: center;
	}

	.image-gallery img {
		width: 100%;
		margin-bottom: 20px;
	}
}

.container {
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	flex-direction: column;
	flex-wrap: nowrap;
}

h1 {
	text-align: center;
	font-family: 'Pacifico';
	font-size: 2rem;
	color: #fff;
	margin-top: 20px;
}

p {
	text-align: justify;
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 20px;
}

.image-gallery {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.image-gallery img {
	width: 48%;
	border-radius: 10px;
}

.contact {
	text-align: center;
	margin-top: 40px;
}

.contact a {
	color: #FFB6C1;
	font-weight: bold;
	text-decoration: none;
	transition: color 0.3s;
}

.contact a:hover {
	color: #fff;
}

.social-media {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 20px;
	text-decoration: underline;
}

.social-media a {
	color: #fff;
	font-size: 1.5rem;
}

.social-media a:hover {
	color: #FFB6C1;
}

.hamburger.move {
    transform: translateX(calc(75vw - 30px)); 
}