
@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;
    width: 100%;
    height: 82.3%;
    top: 125px;
}

.slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 83%;
    padding-top: 50px;
}

#slide {
    width: 50%;
    height: auto;
}

#previous, #next {
    position: absolute;
    font-size: 55px;
    height: 90px;
    width: 45px;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-top: 4px;
}

.slider:hover #previous,
.slider:hover #next{
    opacity: 1;
}

#previous {
    left: 0;
}

#next {
    right: 0;
}

.description-box {
    position: absolute;
    background-color: rgba(128, 128, 128, 0.2);
    width: 200px;
    height: 120px;
    left: 0;
    bottom: 0;
    margin: 10px 10px;
    box-shadow: 1px 1px 1px grey;

}

.description-box h3{
    font-size: 25px;
    text-align: center;
}

.description-box p {
    font-size: 15px;
    text-align: center;
}

.description-text {
    text-align: center;
}

.description-box h1 {
    font-size: 23px;
    padding-top: 5px;
}

#description {
    padding-top: 5px;
}

#description2 {
    padding-top: 5px;
}


@media screen and (max-width : 1150px) {

    #previous, #next {
        opacity: 1;
    }
}

@media screen and (max-width : 660px) {

    .slider {
        height: 70%;
    }
}