body{
	margin:10px;
    padding:0;
	text-align:center;
	background-color: white;
}

h2{
	color: white;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	font-weight: lighter;
}
 .h-div{

	background-color: #ffffff;
   
   
	position: fixed;
	
	z-index: 999;
	

	
 }



 .h-div a:hover {
    background-color: #000000; /* Dark grey background on mouse-over */
    color: rgb(255, 255, 255);
  }

 footer{
	 color: rgb(0, 0, 0);
	 font-family: Arial, Helvetica, sans-serif;
 }


.text{
	font-family:Arial, Helvetica, sans-serif;
}
.frank{
	color:rgb(0, 0, 0);
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	}

    .frank_sombre{
        color:white;
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
        }

.about{
	color:black;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;

}

.about_sombre{
	color:white;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;

}


.contact{
	color:black;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	
}
.contact_sombre{
	color:white;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	
}


.more{
	color:black;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}

.more_sombre{
	color:white;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}


.container{
    display:grid;
	grid-template-columns: repeat(6,1fr);
	grid-auto-rows:100px 300px;
    grid-gap:10px;
    grid-auto-flow: dense;
}

.gallery-item{
    width:100%;
    height:100%;
    position:relative;
}

.gallery-item .image{
    width:100%;
    height:100%;
    overflow:hidden;
}

.gallery-item .image img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position:50% 50%;
    cursor:crosshair;
    transition:.5s ease-in-out;
}


.gallery-item .text{
    opacity:0;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
	color:#ffffff;
    font-size:25px;
    pointer-events:none;
    z-index:4;
    transition: .3s ease-in-out;
    backdrop-filter: none;
}

.gallery-item:hover .text{
	opacity:1;
    padding:1em;
    width:100%;
}


.iframe-item{
    width:100%;
    height:100%;
    position:relative;
}

.iframe-item .image{
    width:100%;
    height:100%;
    overflow:hidden;
}

.iframe-item .image img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position:50% 50%;
    cursor:pointer;
    transition:.5s ease-in-out;
}





.w-1{
    grid-column: span 1;
}
.w-2{
    grid-column: span 2;
}
.w-3{
    grid-column: span 3;
}
.w-4{
    grid-column: span 4;
}
.w-5{
    grid-column: span 5;
}
.w-6{
    grid-column: span 6;
}

.h-1{
    grid-row: span 1;
}
.h-2{
    grid-row: span 2;
}
.h-3{
    grid-row: span 3;
}
.h-4{
    grid-row: span 4;
}
.h-5{
    grid-row: span 5;
}
.h-6{
    grid-row: span 6;
}

.h-7{
    grid-row: span 7;
}
.h-8{
    grid-row: span 8;
}

.description{
	 color: black;
	 text-align:left;
	font-family: Arial, Helvetica, sans-serif;
	 
}

.vertical-menu{
    width: 100%;
    justify-content: left;
    
    
}

.vertical-menu a {
    width: 100%;
    background-color: #ffffff; /* Grey background color */
    color: black; /* Black text color */
    display: block; /* Make the links appear below each other */
    padding: 1fr; /* Add some padding */
    text-decoration: none; /* Remove underline from links */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    text-align: center;
  text-transform: uppercase;
  border:1px solid #000;
  

  }
  
  .vertical-menu a:hover {
    background-color: #000000; 
    color: rgb(255, 255, 255);
  }
  
  .vertical-menu a.active {
    background-color: #ffffff; 
    color: rgb(255, 255, 255);
  }

@media screen and (max-width:500px){
    .container{
        grid-template-columns: repeat(1,1fr);
    }

    .h-div{
font-size: 35px;
        background-color: #ffffff;
       
       width: 100%;
        position: fixed;
        
        z-index: 999;
        
    
        
     }
     

      .vertical-menu{
        padding-top: 210px;
        width: 100%;
        justify-content: left;
        
        
    }

    
      
     

    .w-1,.w-2,.w-3,.w-4,.w-5,.w-6{
        max-width: 500px;
        max-height:fit-content;
        grid-column:span 1;
    }

    .container{
        padding-top: 200px;
        width: 100%;
    justify-content: left;
    background-color: #ffffff; /* Grey background color */
    color: black; /* Black text color */
    display: block; /* Make the links appear below each other */
    padding: 1fr; /* Add some padding */
    text-decoration: none; /* Remove underline from links */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    text-align: center;
  text-transform: uppercase;
 
    }
    .gallery-item:hover .text{
       display: none;
    }


}


@keyframes move-down{

    0%{
        top:10%;
    }
    50%{
        top:35%;
    }
    100%{
        top:50%;
    }
}