@font-face {
    font-family: 'beauty_dreamregular';
    src: url('Font/beauty_dream-webfont.woff2') format('woff2'),
         url('Font/beauty_dream-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

main{
    display: flex;
    justify-content: space-between;
    margin:0 auto;
    cursor: none;
	width:90%;
    
}

/* CURSOR */

.cursor{
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    border: black solid 1px;
    border-radius: 50%;
    z-index: 50;
    transition: width .3s ease, height .3s ease;

}
@media (max-width:700px){.cursor{ display:none}}
.active{
    width: 70px;
    height: 70px;  
    background-color: rgba(0,0,0,.5);  
}



/* NAV */

@media (max-width:700px){nav{ display:none}}
h1{
    font-family: "beauty_dreamregular";
    
    letter-spacing: 2px;
    margin: 0;
	padding-top:0.5em;
	position:relative;
	z-index:50;
    text-align: center;
    color: rgb(255, 255, 255);
	text-shadow:#000 0 0 5px, #000 0 0 10px, #000 0 0 15px;
}
@media (max-width:700px){}


/* PREMIER BLOC */

.gallery-1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(100% / 3);
    box-sizing: border-box;
    height: 250vw;
} 



   
/* DEUXIEME BLOC */ 

.gallery-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(100% / 3);
    box-sizing: border-box;
    position: fixed;
    left: calc(100% / 3);
    bottom: 0;
    height: 250vw;
    padding-bottom: 15vh;
}

/* TROISIEME BLOC */

.gallery-3{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(100% / 3);
    box-sizing: border-box;
    height: 250vw;
} 



/* IMAGES */


.image{
    width: 20vw;
    height:20vw;
    overflow: hidden;
    border-radius: 5vw;
}
@media (max-width:700px){.image{width: 25vw;height:25vw;border-radius: 2vw;}}

.image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;   
    transition: .3s ease;

}
img:hover{
    transform: scale(1.1, 1.1);
    
}

