
    
	


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow:hidden;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

.navbar a:hover {
    text-decoration: underline;
}


.scroll-container {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    height: 100vh;
    width: 100%;
}

img{
	width:auto;
	height:auto;
	border: 0px;
	objectif-fit:cover;
	overflow:hidden;
	
}

.section, img {
    width: 100vh;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 	
}



.section h2 {
	max-width: 	auto;
    font-size: auto;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section,img:hover {
	width:auto;
	height:auto;
    transform: scale(1.05);
    z-index: 10; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    border: 10px solid white;
    background-color: black;
    overflow:hidden;
    objectif-fit:cover;
}

.section:nth-child(odd) {
    background-color: blue;
}

.section:nth-child(odd) {
    background-color: yellow;
}




