html,body{
    height: auto;
    margin: 0;
    font-family: 'Prompt', sans-serif;
    scroll-behavior: smooth;
}

body{
    background-color: #eed9c4;
    color: black;
}

.italic{
    font-style: italic;
}



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

.logo>a{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-width: 20%;
    text-decoration: none;
}


h1{
    font-size: 3em;
    color: #d9b99b;
}

.logo-picture{
    margin-top: 1%;
    width: 10%;
    height: auto;
}

.menu{
    width: 70%;
    height: auto;
}



.menu>nav>ul{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-around;
   flex-wrap: nowrap;
}

li{
    width: auto;
    height: auto;
    margin: 10px;
    display: block;
}

.menu>nav>ul>li>a{
    text-decoration: none;
    color: black;
    padding: 10px;
    background-color: #eed9c4;
    border: solid 1px white;
    border-radius: 10px;
    width: 20%;
    height: auto;
    transition: all 0.7s;
}

.menu>nav>ul>li>a:hover{
    background-color: #d9b99b;
    border-radius: 15px;
    transition: all 0.7s;
}

body{
    width: 100%;
    height: auto;
}


body>h2{
    font-size: 2em;
    color: white;
    text-align: center;
    margin: 2% 0 2% 0;
}

body>p{
    width: 70%;
    height: auto;
    margin: 4% 0 0 15%;
}

.dog,.cat,.fidelity{
    width: 95%;
    height: auto;
    background-color: #d9b99b;
    margin: 10% 0 0 2.5%;
    padding-bottom: 3%;
    border-radius: 5px;
}

.dog>h2{
    padding: 2%;
    color: white;
    font-size: 1.7em;
}


.complet,.forfait{
    width: 90%;
    height: auto;
    margin: 3% 0 0 3%;
    background-color: #eed9c4;
    border-radius: 4px;
    padding: 1%;
}

h3{
    font-size: 1.2em;
}

.complet>article{
    margin: 2% 0 2% 0; 
}

.forfait>article{
    margin: 2% 0 2% 0;
}

.fidelity>article{
    margin: 2% 0 2% 0;
}

.prix{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1%;
}

.cat>h2{
    padding: 2%;
    color: white;
    font-size: 1.7em;
}

.nota{
    width: 90%;
    height: auto;
    font-size: 1.1em;
    margin: 2% 0 2% 5%;
    color: red;
}

footer{
    background-color: white;
    width: 100%;
    height: auto;
    padding: 5% 0 5% 0;
}

footer>h2{
    margin-left: 5%;
}
iframe{
    margin: 5%;
    border-radius: 5%;
    border: solid 5px #eed9c4;
    width: 40%;
}

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

.info{
    width: 60%;
}

.info>p{
    text-align: center;
    font-size: 1.3em;
}

.icon-contact{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}



figure{
    margin: 5%;
    width: 30%;
    text-align: center;
}

figcaption{
    text-decoration: none;
}

figure>a{
    text-decoration: none;
    color: black;
}

figure>a:hover{
    text-decoration: underline;
}

.copyright{
    width: 100%;
    height: auto;
}

.copyright>p{
    color: black;
    font-size: 0.8em;
    width: 100%;
    text-align: center;
}


@media only screen and (max-width: 1000px){

    h1{
        font-size: 2em;
    }

    .menu{
        width: 85%;
    }

    menu>nav>ul>li>a{
        padding: 5px;
    }

    .comment,.italic{
        font-size: 0.7em;
    }

    .prix>p{
        font-size: 1.5em;
    }
   
    .text{
        font-size: 1.5em;
    }
    

}