body{
	background-color: white;
	font-family: nb_international_pro, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	padding: 30px 0;
	z-index: 10;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

.logo img {
	height: 100px;
	margin-left: 10px;
}

nav {
	margin-top: 20px;
	text-align: right;
	margin-right: 300px;
}

nav a{
	display: inline-block;
	color: black;
	padding: 10px 20px;
	text-decoration: none;
	margin: 5px;
	background-color: transparent;
	transition: font-size 0.2s;
	font-weight: bold;
}

nav a:hover {
	font-size: 18px;
	transition: font-size 0.2s;
}

 .gallery {
	margin: 200px auto;
 }
 
 .container {
	position: relative;
	min-height: 100vh;
	margin: 160px auto;
 }
 
 .container .image-container {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	padding: 10px;
 }
 
 .container .image-container .image {
	height: 250px;
	width: 350px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid #111111;
 }	 
 
  .container .image-container .image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: .2s linear;
  }

 .container .image-container .image:hover img {
	transform: scale(1.1);
 }
 
 .container .popup-image {
	position: fixed;
	top: 0; left: 0;
	background: rgba(0,0,0,.9);
	height: 100%;
	width: 100%;
	z-index: 100;
	display: none;
 }
 
 .container .popup-image span {
	position: absolute;
	top: 0; right: 10px;
	font-size: 60px;
	font-weight: bolder;
	color: #ffffff;
	cursor: pointer;
	z-index: 100;
 }
 
 .container .popup-image img {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 750px;
	object-fit: cover;
 }
 
 .gallery h1 {
	font-weight: bold;
	font-size: 75px;
	text-align: center;
 }
 
 .container h2 {
	font-size: 30px;
	text-align: center;
 }
 
 .gallery h3 {
	font-size: 50px;
	text-align: center;
 }
 
 .click-here {
	display: flex;
	justify-content: center;
	align-items: center;
 }
 
.click-here a {
	font-size: 20px;
	text-decoration: none;
	color: black;
	font-weight: bold;
	text-align: center;
 }
 
 h4 {
	text-align: center;
	font-size: 20px;
 }

footer {
	background-color: white;
	padding: 30px;
	text-align: center;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

.footer-logo img {
	height: 80px;
	margin-left: 10px;
}

.footer-nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-nav a {
	display: inline-block;
	color: black;
	padding: 10px 20px;
	text-decoration: none;
	margin: 5px;
	background-color: transparent;
	border: transparent;
	transition: font-size 0.2s;
	font-weight: bold;
}

.footer-nav a:hover {
	font-size: 18px;
	transition: font-size 0.2s;
}



.info p {
	text-align: right;
	font-weight: bold;
}

footer p {
	text-align: center;
}

/* Support for mobile devices, avoids the frustrating cut-off screen issue */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        margin: 0 auto;
        height: 60px;
    }

    nav {
        text-align: left;
        margin-top: 10px;
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
        margin: 0;
    }
	
	.gallery {
		margin-top: 20px;
		clear: both;
		padding-top: 300px;
	}
	
	.gallery h1 {
        font-size: 55px; /* Reduce the font size for smaller screens */
        margin: 20px 0; /* Add some margin to push it away from the nav */
    }
	
    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
    }

    .info p {
        text-align: center;
    }
}