
.image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    height: auto;
}

.main-image {
    width: 100%;
    height: 100%;
    cursor: pointer;
    max-height: 80vh;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 80vh;
    display: none;
    cursor: pointer;
}

.checkbox-container {
    text-align: center;
    margin: 20px 0;
}

.checkbox-container label {
    margin-right: 20px;
    font-size: 1.2em;
}

.content-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

nav button#burger-menu {
    display: none;
    background: none;
    border: block 2px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
	float: right;
	right: 10px;
	transform: translateY(-70%);
}

/* Apply responsive styles for smaller screens */
@media only screen and (max-width: 768px) {
    header {
        padding: 10px 0;
    }

	nav button#burger-menu{
		display: block;
	}
	
	nav {
		padding-top: 10px;
	}

    nav ul {
        text-align: right;
        margin-top: 10px;
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    #home,
    #about,
    #portfolio,
    #glossaire,
    #image-details,
    #prints,
    #contact {
        padding: 30px 10px;
    }

    nav ul {
        display: none; /* Initially hide the regular navigation menu on small screens */
    }

    nav.active ul {
        display: block; /* Show the navigation menu when the burger menu is active */
    }
}