*{
    margin: 0;
    padding: 0;
}

@font-face{  
    font-family: "Wild Flower";  
    src: url('../WildFlowerBold.ttf');
}

header{
    background-image: url(../images/fdb.jpg);
    width: auto;
    height: 100vh;
}

nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    color: green;
    position: fixed;
    z-index: 999;
    width: 100vw;
    height: auto;
}

.menu{
    visibility: initial;
}

#menubar{
    visibility: hidden;
}

#logo{
    font-family: "Wild Flower";
    font-size: 4vh;
    font-weight: bold;
}

li{
    list-style: none;
    margin-right: 10px;
    font-size: 2vh;
    font-family: 'Monserrat', sans-serif;
}

ul{
    display: flex;
    flex-direction: row;
}

#textcenter{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 90vh;
}

#bggt{
    background-color: #517f417d;
    width: 50vw;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#textec{
    color: white;
    font-size: 10vh;
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
}

#aboutus{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

#titreau{
    padding: 2vh;
    color: green;
    font-size: 5vh;
    font-family: 'Courgette', cursive;
}

.centerau{
    display: flex;
    align-items: center;
    flex-direction: column;
}

i{
    color: green;
}

#bgfixed{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40vh;
    background-image: url(../images/bg3.jpg);
    background-size: cover;
    background-attachment: fixed;
}

#bggtbf{
    background-color: #517f417d;
    width: 70vw;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#textebf{
    color: white;
    font-size: 5vh;
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
}

#team{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

#titret{
    padding: 2vh;
    color: green;
    font-size: 5vh;
    font-family: 'Courgette', cursive;
}

.centert{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.centert img{
    width: 200px;
    height: 200px;
    border: 10px solid green;
    border-radius: 50%;
    position: relative;
}

#info1{
    width: 200px;
    height: 200px;
    border: 10px solid green;
    border-radius: 50%;
    position: absolute;
    display: hidden;
}

#info1:hover{
    width: 200px;
    height: 200px;
    background-color: #517f417d;
    border-radius: 50%;
    display: initial;
}

#info2{
    width: 200px;
    height: 200px;
    border: 10px solid green;
    border-radius: 50%;
    position: absolute;
    display: hidden;
}

#info2:hover{
    width: 200px;
    height: 200px;
    background-color: #517f417d;
    border-radius: 50%;
    display: initial;
}

#info3{
    width: 200px;
    height: 200px;
    border: 10px solid green;
    border-radius: 50%;
    position: absolute;
    display: hidden;
}

#info3:hover{
    width: 200px;
    height: 200px;
    background-color: #517f417d;
    border-radius: 50%;
    display: initial;
}

#info4{
    width: 200px;
    height: 200px;
    border: 10px solid green;
    border-radius: 50%;
    position: absolute;
    display: hidden;
}

#info4:hover{
    width: 200px;
    height: 200px;
    background-color: #517f417d;
    border-radius: 50%;
    display: initial;
}

.centert h1{
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
    font-style: italic;
    font-size: 3vh;
}

.centert span{
    font-family: 'Monserrat', sans-serif;
    font-style: italic;
}

#carousel{
    background-image: url(../images/bg2.jpg);
    background-attachment: fixed;
    background-size: cover;
    width: auto;
    height: 40vh;
    display: flex;
    align-items: center;
}

#carousel img{
    border-radius: 20%;
    width: 250px;
    height: 250px;
}

#titreg{
    padding: 2vh;
    color: green;
    font-size: 5vh;
    font-family: 'Courgette', cursive;
}

#galerie{
    display: flex;
    align-items: center;
    flex-direction: column;
}

#galerie img{
    width: 300px;
    height: 300px;
    margin: 10px;
}

footer{
    width: auto;
    height: 50vh;
    background-color: #517f41;
    color: white;
    display: flex;
    justify-content: center;
    padding-top: 10vh;
}

footer p{
    font-size: 5vh;
    font-family: 'Monserrat', sans-serif;
    animation: animcontact 3s infinite normal linear;
}

@keyframes animcontact {
    0% {margin: 0;}
    50%{margin: 50px;}
    100%{margin: 0;}
}

.visible{
    visibility: initial;
}

.invisible{
    visibility: hidden;
}

.black{
    background-color: white;
}

@media(max-width: 800px){
    
    .menu{
        visibility: hidden;
    }

    #menubar{
        visibility: initial;
    }

    ul{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}