/*********************************************************************************************************
        Code GENERAL
 ********************************************************************************************************/
@import url('https://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400,400i,700');
@import url('https://fonts.googleapis.com/css?family=Changa&display=swap');

:root {
    --hBody: 100vh;
    --wBody: 100vw;
    --paddingGeneral: 20px;
    --wHeaderBouton: 30px;
    --hFooter: 60px;
    --hImage: calc(var(--wBody) * 7 / 100);
}

* {
    box-sizing: border-box;
}

html {
    font-family: 'Changa', sans-serif;
    font-size: 1em;
    line-height: 1.4;
    color: white;
    height: 100%;
}

body {
    margin: 0;
    height: var(--hBody);
}

main {
    height: var(--hMain);
    border-top: 1px solid white;
    padding: 20px 5%;
}

h1 {
    font-family: 'Changa One', cursive;
    font-size: 1.5em;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: #80e5ed;
    text-decoration: underline;
}

.background {
    background-image: url("../images/image-fond.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 100%;
}

.transparence {
    background-color: rgba(0,0,0,0.55);
    height: 100%;
}


/***********************************************************************************************************************
                                                    HEADER
 **********************************************************************************************************************/
header {
    height: var(--hHeader);
    background-color: black;
}

header #titre {
    position: fixed;
    height: 30px;
}

header #titre h1 {
    margin: 0;
    line-height: 100%;
    text-align: center;
    height: 100%;
    width: 100%;
}

header #titre h1 a {
    display: inline-block;
    height: 100%;
    width: 100%;
}

header #titre h1:hover,
header div#titre h1 a:hover {
    color: white;
    text-decoration: none;
}


/***********************************************************************************************************************
        FOOTER
 **********************************************************************************************************************/
footer {
    height: var(--hFooter);
    width: var(--wBody);
    position: absolute;
    background-color: black;
    border-top: white solid 1px;
    padding: 20px;
    z-index: 100;
}

footer address {
    text-align: center;
    line-height: 100%;
    height: 100%;
    width: 100%;
    z-index: 100;
}


/***********************************************************************************************************************
        PAGES
 **********************************************************************************************************************/
main {
    height: var(--hMain);
}

main div {
    margin: 0 auto;
    border: 3px solid #92959c;
    border-radius: 15px;
    background-color: transparent;
}

main div img {
    height: var(--hImage);
    filter: grayscale(1);
    transition: filter 1000ms linear;
}

main div img:hover {
    filter: grayscale(0);
}

main div a {
    display: block;
    height: var(--hImage);
    margin: 1% .5% ;
}

main div.groupe:first-child {
    margin-top: 0;
}

main div.groupe {
    margin-top: 20px;
}

main div#search form input {
    padding: 5px 5px 5px 30px;
    border: none;
    color: #92959c;
    width: 100%;
    font-size: 110%;
    background-color: transparent;
    background-image: url("../images/recherche.png");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 5px 11px;
}

main div#favoris a {
    display: inline-block;
    width: var(--hImage);
}

main div#favoris a:first-child {
    margin-left: 2%;
}

main div#favoris a img {
    border: 3px solid black;
    border-radius: 100%;
}

main div#clock {
    text-align: center;
}

main div#clock p {
    margin: 0 auto;
    font-size: 1.5em;
    font-weight: 100;
}

main div#clock #heure {
    color: #4ECDC4;
}


/***********************************************************************************************************************
        PAGE INDEX
 **********************************************************************************************************************/
main#page-perso {

}


/***********************************************************************************************************************
        PAGE EMT
 **********************************************************************************************************************/
main#page-emt {

}