@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Dancing+Script:wght@400..700&family=Edu+NSW+ACT+Hand+Pre:wght@400..700&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root{
    --or: #f5b32c;
    --gris: #131312;
    --backgroundcolor: #080808;
    --textColor: #e4e4e4;
    --marron: #97562e;
    --orange: #ef8935;
}

html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Advent Pro', sans-serif;
    padding: 0;
    margin: 0;
    background-color: var(--backgroundcolor);
}
ul {
    padding: 0;
    margin: 0;
}
li {
    list-style-type: none;
}
h2 {
    text-transform: uppercase;
    text-align: center;
    padding-top: 30;
    font-size: 2rem;
    color: var(--textColor);
    font-weight: normal;
}

p{
    color: var(--textColor);
}
a {
    text-decoration: none;
    color :var(--textColor);
}

.underline{
    text-decoration: underline;
}

/* ***********************************NAVBAR****************************************** */

nav {
    overflow: hidden;
    background-color: var(--backgroundcolor);
    position: fixed;
    width : 100%;
    opacity: 0.9;
}

#navBarLeft {
    padding-right: 10%;
}

header li {
    float: right;
    font-size: 1.2rem;
}
header li a {
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 18px 16px;
}
#logo {
    font-family: 'Lobster Two', cursive;
    /* font-weight: bold; */
    float: left;
    padding-left: 10%;
}

/* *****************************IMAGE PRINCIPALE **************************/
#imagePrincipale {
    /* background: url(media/cartes.jpg) no-repeat fixed 50% 50%; */
    padding-top: 60px;
    /* background-size: cover; */
    height: 400px;
}

h1{
    font-weight: 200;
    font-family: 'Lobster Two', cursive;
    text-align: center;
    color: var(--textColor);
    font-size: 4rem;
    margin-top: 100px;
    text-shadow: 1px 3px 2px var(--gris);
}

#premierTrait
{
    height: 1px;
    width: 25%;
    margin: -3px auto;
    background-color: var(--textColor);
}

h3{
    font-weight: 200;
    color: var(--textColor);
    text-align: center;
    font-size: 3rem;
    text-shadow: 1px 3px 2px rgb(0, 0, 0);
}

/* *****************************PRESENTATION******************* */

#presentation {
    background-color: var(--backgroundcolor);
    /* padding: 0 10%; */
    text-emphasis-color: white;
    /* text-align: center; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;    
}

#textIntro{
    padding: 10px 5%;
    font-size: 1.2rem;
    width: 341px;
    text-align: justify;
    /* justify-content: center; */
}

#photo{
    padding: 30px 5%;
    /* width: 40%;   */
}



/* #prestations {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 10%;
}

.imagesPrestations h4{
    font-family: 'Dancing Script', cursive;
    text-align: center;
    font-size: 1.8rem;
    margin: 15px;
    font-weight: 300;
}

.imagesPrestations img {
    box-shadow: 1px 3px 2px black;
    border-radius: 10px;
}

.imagesPrestations img:hover {
    opacity: 0.5;
    transform: scale(1.05);
    transition: 0.1s ease-in-out;
} */

/* **********************************FOOTER****************** */

footer{
text-align: center;
padding: 20px 0 10px 0;
font-family: 'Advent Pro', sans-serif;
font-weight: 200;
}

#coordonnees ul{
    color: var(--textColor);
    padding: 0;
    margin: 20px;
    /* display: flex;
    justify-content: center; */
}

form{
    margin: 0 auto;
    max-width: 900px;
}

input, textarea, button {
    border: none;
    width : 55%;
    /* max-width: 900px; */
    padding: 15x 10px;
    margin: 1px 0;
    font-size: 1.2rem;
    font-family: 'Advent Pro', sans-serif;
    border-radius: 8px;
}

textarea{
    height: 220px;
}

button{
    font-size: 1.5rrem;
}

button:hover{
    background-color: #861f94;
    color: white;
    cursor: pointer;
    transition: 0.1s ease-in-out;
}

#deuxiemeTrait{
    background-color: var(--textColor);
    height: 1px;
    margin: 60px auto;
    width: 55%;
    justify-content: center;
}

#copyrightEtIcons{
    color: var(--textColor);
    display: flex;
    margin-bottom: 20px;
    padding: 0 10%;
}

#copyright{
    width: 50%;
    text-align: left;
}

#icons{
    width: 50%;
    text-align: right;
}

/* *******************************PRESTATIONS*************************** */

#prestationsTitre{
    padding-top: 60px;
}

/* **********************************AVIS************************************** */

#avisTitre{
    padding-top: 60px;
}

@media all and (max-width: 500px){
    body{
        color: blue;
    }
}