@font-face {
    font-family: century-gothic;
    src: url(../ressources/GOTHIC.TTF);
}

/* les couleurs du site  */
:root {
    --bleuSombre:#011627;
    --fontColor : rgb(198, 198, 198);
    --or : #848277;
    --orTransparent : #84827731;
    --arrowThree : #848277;
    --arrowTwo : #ada685;
    --arrowOne : #FFF2BF;
    --font : century-gothic;
    --transparent: #01162700;
    --bleuTransparent: #01162751;
}

/* html {
    font-size: 62.5%;
} */

html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: var(--bleuSombre);
    color: var(--fontColor);
    font-family: var(--font);
}

/* début HEADER */
header, #header, .header {
    height: 5vh;
}

header {
    /* background-image: url("../ressources/fond/bandeau-header-72dpi.png"); */
    background-image: url("../ressources/fond/bandeau-header-opacité50-72dpi.png");
    background-repeat: no-repeat;
    /* background-position: center; */
    background-position: left;
    background-size: cover;
}

#header {
    border-bottom: 1px solid var(--or);
}


.header, #footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header {
    justify-content: left;
}

.header a {
    margin-left: 1.5vw;
    font-size: 1.2em;
    font-weight: bolder;
}

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

.header span {
    font-style: italic;
    font-size: 1.4em;
    margin-left: 2vw;
}
/* fin HEADER */


/* début FOOTER */
footer {
    height: 5vh;
    display: flex;
    justify-content: center;
}

#footer{
    width: 10vw;
    justify-content: space-evenly;
}

.icone {
    font-size: 1.5rem;
    color: var(--fontColor);
}

#propos {
    color: var(--fontColor);
    font: var(--font);
    text-transform: capitalize;
}

/* au survol du footer */
#propos:hover, .icone:hover {
    color: var(--arrowThree);
}
/* fin FOOTER */


/* début du MAIN */
main {
    height: 90vh;

}

/* css général des boutons */
button {
    border: none;
    background-color: var(--transparent);
    /* background-color: var(--bleuSombre); */
}
 /* fin du MAIN */

.icone:hover, #propos:hover, button:hover {
    cursor: pointer;
}


/* début tablette */
@media screen and (max-width: 1200px) {

    .header a {
        /* margin-left: 1.5vw; */
        font-size: 1.1em;
    }

    .header span {
        font-size: 1.3em;
        /* margin-left: 2vw; */
    }

    #footer {
        width: 25vw;
    }

}





/* début mobile */
@media screen and (max-width: 765px) {

    header, #header {
        height: 7vh;
        padding-bottom: .5rem;
    }

    .header {
        flex-direction: column;
        align-items: start;
    }

    h1 {
        margin-top: .4rem;
        margin-bottom: .1rem;
    }

    .header a {
        font-size: 1.1em;
    }

    .header span {
        font-size: 1.2em;
    }

    #footer {
        width: 40vw;
    }
}