/************************************
* CSS de la page d'accueil du site. *
************************************/

/* Elements de base */
body {
    padding: 0;
    margin: 0;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #606c71;
}

/* Liens sans soulignement */
a {
    text-decoration: none;
}

/* Liens avec soulignement au passage de la sourie */
a:hover {
    text-decoration: underline;
}

/* Entête & titre - DEBUT */
.page-header {
    color: #FFF;
    text-align: center;
    background-image: url(../images/fond.jpg);
}

.project-name {
    margin-top: 0;
    margin-bottom: 0.1rem;
    color: darkblue;
}

.project-tagline {
    margin-bottom: 2rem;
    font-weight: normal;
    opacity: 0.7;
    color: darkblue;
}

@media screen and (min-width: 64em) {
    .page-header {
        padding: 5rem 6rem;
    }

    .project-name {
        font-size: 4.25rem;
    }

    .project-tagline {
        font-size: 2.25rem;
    }
}

@media screen and (min-width: 42em) and (max-width: 64em) {
    .page-header {
        padding: 3rem 4rem;
    }

    .project-name {
        font-size: 2.25rem;
    }

    .project-tagline {
        font-size: 1.15rem;
    }
}

@media screen and (max-width: 42em) {
    .page-header {
        padding: 2rem 1rem;
    }

    .project-name {
        font-size: 1.75rem;
    }

    .project-tagline {
        font-size: 1rem;
    }
}

/* Entête & titre - FIN */

/* Pour la photo  - DEBUT */
/* source : https://blog.smarchal.com/avatar-en-medaillon */
div.medaillon {
    position: absolute;
    margin-left: 20px;
}

@media screen and (max-width: 42em) {
    div.medaillon {
        display: none;
    }
}

img.medaillon {
    width: 100px;
    height: 152px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    margin: 10px;
    border: 4px solid #ededed;
    box-shadow: 2px 2px 2px #888888;
}

/* Pour la photo réelle de la page d'accueil - FIN */

/* Pour la page d'accueil - DEBUT */
.tuiles {
    min-height: 240px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tuile {
    width: 250px;
    border: solid 1px black;
    margin: 2px;
    text-align: center;
    font-size: 1.5rem;
}

.tuile img {
    max-width: 248px;
    max-height: 210px;
}

/* Pour la page d'accueil - FIN */