*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "jedi";
    src: url("../Starjedi.ttf");
}

body{
    background-image: url(../images/fond2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "jedi";
}

header{
    color: yellow;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100vw;
    height: auto;
}

img{
    width: 150px;
    height: 100px;
}

ul{
    display: flex;
    flex-direction: row;
    align-items: center;
}

li{
    list-style: none;
    margin: 10px;
}

a:hover{
    padding: 10px;
    border-bottom: 2px solid yellow;
}

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

#burger{
    order: -1;
}

i{
    visibility: hidden;
}

#perso{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: yellow;
}

#persopets{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

h1{
    border: 2px solid black;
    color: black;
    background-color: yellow;
    padding: 10px;
    margin-bottom: 30px;
}

input{
    border: 2px solid yellow;
    color: yellow;
    background-color: black;
    padding: 10px;
    margin: 10px;
    border-radius: 20%;
    font-family: "jedi";
}

input:hover{
    color: red;
    border: 2px solid red;
}

#listeperso{
    border: 2px solid yellow;
    background-color: black;
    padding: 20px;
    margin: 20px;
}

#listeperso p{
    border-bottom: 1px solid yellow;
    padding: 10px;
}

#listeperso p:hover{
    color: red;
}

#carperso{
    border: 2px solid yellow;
    background-color: black;
    padding: 20px;
    margin: 20px;
}

#carperso p{
    border-bottom: 1px solid yellow;
    padding: 10px;
}

#planete{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: yellow;
}

#planetepets{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#listep{
    border: 2px solid yellow;
    background-color: black;
    padding: 20px;
    margin: 20px;
}

#listep p{
    border-bottom: 1px solid yellow;
    padding: 10px;
}

#listep p:hover{
    color: red;
}

#carp{
    border: 2px solid yellow;
    background-color: black;
    padding: 20px;
    margin: 20px;
}

#carp p{
    border-bottom: 1px solid yellow;
    padding: 10px;
}

#listerech{
    border: 2px solid yellow;
    background-color: black;
    padding: 20px;
    margin: 20px;
}

#listerech p{
    border-bottom: 1px solid yellow;
    padding: 10px;
}

#rech{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: yellow;
}

#b{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 400px;
    height: auto;
}

.visible{
    visibility: initial;
}

.invisible{
    visibility: hidden;
}

.black{
    background-color: black;
}

@media(max-width: 800px){
    i{
        visibility: initial;
    }
    a{
        visibility: hidden;
    }

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

    #burger{
        order: -1;
    }

    #persopets{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    #planetepets{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    #b{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        width: 400px;
        height: auto;
    }
    
}