@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Courgette&display=swap');
body {
    background-color: #242424;  /* fallback for old browsers */

    margin: 0;
    padding: 0;
    font-family: 'Courgette'; 
}

header {
    height: 85vh;
    background-position: center;
    color: #f1f1f1;
    text-align: center;
}

header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

header nav a {
    color: #f1f1f1;
    font-weight: bold;
    text-decoration: none;
    margin-right: 10px;
}

header nav .visage img {
    position: relative;
    width : 50%;
    transition: 0.8s ease-in;
}

header nav .visage img:hover {
    visibility: visible;
    width : 70%;
    text-decoration: none;
    filter : invert(200%); 
    opacity: 0.3; 
    cursor: pointer; 
}
   
header nav .onglets a:hover {
    color: #4c4c4c;
    border-bottom: 1px solid #cccccc;
}


header .titre {
    margin-top: 50px;
   
}

header .titre h3 {
    margin-top: -20px;
    padding: 20px;
    margin-bottom: 30%;
}

header .titre cite {
    color: rgb(141, 133, 133);
    border-bottom: 2px dotted;
    margin-left: 40%;
    font-size: 85%;
}

.recapitulatif {
    background-color : #f1f1f1;
    color: #242424;
   padding: 30px;
   display: flex;
   flex-wrap: wrap;
}

.recapitulatif .gauche {
    width: 60%;
    margin-right: 20px;
}

.recapitulatif .droite {
    display: block;
    margin-left: auto;
    margin-right: auto;

}

.services {
    padding: 10px;
    background: url("");
    background-position: center;
    color: #f1f1f1;
}

.service-cartes .carte {
    cursor: pointer;
}

@media screen and (max-width: 810px) {
    width: 100%;
}

