*, *::before, *::after{
    box-sizing: border-box;
}

html {
    font-family: 'Courier Prime', monospace;  
}

body{
    background-color: white;
    color: black;
    height: 100vh;
    margin: 0;
}

header {
    height: 10%;
    display: flex;
    justify-content: space-between;
    padding-top: 2%;
    padding: 30px;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: black;
}

p {
    margin: 0;
    font-size: 1.2rem;
}

h1 {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 5%;
    font-size: 4rem;
}

h2 {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

h3 {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 10%;
    font-size: 2.5rem; 
    font-weight: 100;
}

/* RÉSEAUX SOCIAUX */ 

.rs {
    text-decoration: none;
    color: black;
    display: inline-block;
}

/* END OF RÉSEAUX SOCIAUX */ 

/* MENU BURGER CROIX */ 

.menu {
    position: fixed;
    top: 42%;
    left: 30px;
    transform: rotate(45deg);
}

.menu1 {
    position: fixed;
    top: 42%;
    left: 30px;
    transform: rotate(-45deg);
}

.menuu1 {
    background-color: black;
    width: 25px;
    height: 2px;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* END OF MENU BURGER */ 

/* GALERIE PROJET*/

.container {
    width: 100%;
    display: flex; 
    justify-content: center;
    margin-top: 2%;
    flex-wrap: wrap;
    margin-bottom: 2%;
}

.block {
    width: 24%;
    background-color: white;
    padding: 1rem;  
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 2%;
}

.bang {
    width: 24%;
    background-color: white;
    padding: 1rem;  
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 2%;
    margin-top: 2%;
}

.book {
    width: 24%;
    background-color: white;
    padding: 1rem;  
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 2%;
    margin-top: 4%;
}

.block img {
    width: 80%;
}

.bang img {
    width: 80%;
}

.book img {
    width: 80%;
}

img:hover {
    transition: .3s ease-in-out;
    transform: scale(1.2);
}

.blur {
	-webkit-filter: blur(3px);
	filter: blur(3px);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.blur:hover {
	-webkit-filter: blur(0);
	filter: blur(0);
}

/* END OF GALERIE PROJET*/


/* ABOUT ME */

.titre {
    padding-top: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nom {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.descript{
    display: flex;
    width: 95%;
    justify-content: center;   
}

.description1 {
    width: 30%;
    margin-right: 2%;
    margin-top: 2%;
    hyphens:manual;
}

.description2 {
    width: 30%;
    margin-right: 2%;
    margin-top: 4%;
    hyphens:manual;
}

.description3 {
    width: 30%;
    margin-right: 2%;
    margin-top: 6%;
    hyphens:manual;
}

.contact {
    margin-top: 5%;
    text-align: center;
}

.contact-titre {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact1 {
    margin-top: 10px;
}

/* END OF ABOUT ME */

/* FOOTER */ 

.arrow {
    width: 40px;
    height: 40px;
    margin: auto;
}

.link {
    display: flex;
    justify-content: center;
    margin: 5% 0;
}

/* SOULIGNEMENT PROJETS */ 

.project {
    margin-top: 25px;
    text-decoration:none;
    text-align: center;
    text-transform: uppercase;
    
}

.project:after {
    content: '';
    display: block;
    margin: auto;
    height: 1px;
    width: 0;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
}

.project:hover:after {
    width: 90%;
    background: #444;
}

/* END OF SOULIGNEMENT PROJETS */ 

.about:hover {
    text-decoration-line: line-through;
}

.rs:hover {
    text-decoration-line: line-through;
}

/* MEDIA QUERIES !!!!!!!!! */

@media (max-width:1250px) {
    
    p {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 3rem;
        margin-bottom: 0%;
    } 
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .descript{
    display: flex;
    width: 95%;
    flex-direction: column;
    align-items: center;
}

.description1 {
    width: 95%;
    margin-top: 5%;
    text-align: center;
}

.description2 {
    width: 95%;
    text-align: center;
    margin-top: 5%;
   
}

.description3 {
    width: 95%;
    text-align: center;
    margin-top: 5%;
}
    .blur {
	-webkit-filter: blur(0px);
	filter: blur(0px);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
}


@media (max-width:1024px) {
    
     p {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 3rem;
        margin-bottom: 0%;
    } 
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    
    .nom {
     flex-direction: column;
        align-items: center;
    }  

    .rs {
        display: none;
    }
    
    header {
    justify-content: flex-end;
    }
   
    .menu {
        position: absolute;
        top: 30px;
        left: 30px;
    }
    
    .menu1 {
        position: absolute;
        top: 30px;
        left: 30px;
    }
    
    .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
    .block {
        width: 49%;
        margin-bottom: 5px;
    }
    
    .bang {
        width: 49%;
        margin-bottom: 5px;
    }
    
    .book {
        width: 49%;
        margin-bottom: 5px;
    }
}

@media (max-width:500px) {
    
    p {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 0%;
    } 
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .descript > p {
        margin: 3% 0%;
    }
    
    .nom {
     flex-direction: column;
        align-items: center;
    } 
     
    .nom {
     flex-direction: column;
        align-items: center;
        margin-bottom: 3%;
    }  
         
   .block {
        width: 99%;
        
    }
    
    .bang {
        width: 99%;
        
    }
    
    .book {
        width: 99%;
        
    }
    
    .link {
    display: flex;
    justify-content: center;
    margin: 10% 0;
}

}

/* END OF MEDIA QUERIES !!!!!!!!! */


