
@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;
}


.textelegal {
    position: relative;
    left: calc(50% - 30%);
    right: calc(50% - 30%);
    width: 60%;
    height: auto;
    text-align: center;
    padding-top: 140px;
}

.textelegal p {
    font-size: 25px;
}