
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Rouge+Script&family=Zain:wght@300&display=swap');


* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Zain", sans-serif;
    font-weight: 300;
    font-size: larger;
    font-style: normal;
    
}


html, body {
    height: 100%;
}


.header {
    background-color: grey;
    z-index: 100;
    height: 125px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-shadow: 0px 1px 6px black;
    z-index: 100 ;
}

.nom {
    color: white;
    padding-top: 5px;
    user-select: none;
}

.Burger_Button {
    background-color: rgba(0, 10, 10, 0.4);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
}


.Burger_Button svg {
    width: 40px;
    height: 40px;
    text-align: center;
    margin-top: 1px;
    color: white;
}

.Burger_Button svg:hover {
    transform: rotate(15deg);
    cursor: pointer;
    transition: 0.3s;
}

.Menu {
    position: absolute;
    z-index: 1;
    top: -200px;
    left: 50%;
    margin-left: -150px;
    z-index: 10;
}

.Menu.active {
    transform: translateY(+325px);
    transition: transform 1.2s ease;
}

.Menu.slideup {
    transform: translateY(-325px);
    transition: transform 2.3s ease;
}

.Burger_Menu {
background-color: lightgrey;
width: 300px;
height: auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.Burger_Menu ul {
    list-style: none;
    width: 100%;
    height: 100%;
    text-align: center;
}

.Burger_Menu ul a {
    font-size: 28px;
    color: black;
}

.Burger_items {
    font-size:larger;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.Burger_items:hover {
    background-color: grey;
}

.Burger_Menu ul a:hover {
    color: whitesmoke;
}

main {
    position: relative;
    height: 81%;
    width: 100%;
    top: 125px;
}

.HomeImage{
    position: relative; 
    width: 50%;
    left: calc(50% - 25%);
    right: calc(50% - 25%);
    padding-top: 20px;
}
.HomeImage img {
    max-width: 100%;
    height: auto;
}

.HomeImage h1 {
    text-align: center;
    font-size: 40px;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 1.5px;
}

.SecondMainIMG {
    display: none;
}

@media screen and (max-width : 715px ) {
    
    .SecondMainIMG {
        display: block;
    }
    
    .HomeImage {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 75%;
        left: calc(50% - 37.5%);
    right: calc(50% - 37.5%);
    }

}

.descriptionchardon p {
    opacity: .6;
    font-size: 15px;
}