@charset "utf-8";
/* CSS Document */

body {
    background:white;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    color: #181818;
}

#bloc_page
{
    width: 90%;
    margin: auto;
}

header
{ 
    background-color: blue;
    font-size: large;
    color: antiquewhite;
    text-align: center;
    width: 100%;
    padding: 10px;
    margin: 5px;
    box-shadow: 0px 2px 5px #1c1a19;
    border-radius: 5px;

}
/* Définition des polices personnalisées */

@font-face
{
    font-family: 'BallparkWeiner';
    src: url('polices/ballpark.eot');
    src: url('polices/ballpark.eot?#iefix') format('embedded-opentype'),
         url('polices/ballpark.woff') format('woff'),
         url('polices/ballpark.ttf') format('truetype'),
         url('polices/ballpark.svg#BallparkWeiner') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face
{
    font-family: 'Dayrom';
    src: url('polices/dayrom.eot');
    src: url('polices/dayrom.eot?#iefix') format('embedded-opentype'),
         url('polices/dayrom.woff') format('woff'),
         url('polices/dayrom.ttf') format('truetype'),
         url('polices/dayrom.svg#Dayrom') format('svg');
    font-weight: normal;
    font-style: normal;
}

section h1, footer h1, nav a
{
    font-family: Dayrom, serif;
    font-weight: normal;
    text-transform: uppercase;
}

header h1
{
    font-family: 'BallparkWeiner', serif;
    font-size: 2.5em;
    font-weight: normal;
    margin: 0 0 0 10px;
}

header h2
{
    font-family: Dayrom, serif;
    font-size: 1.1em;
    margin-top: 0px;
    font-weight: normal;
}

nav ul
{
    list-style-type: none;
    display: flex;
}

nav li
{
    margin-right: 15px;
}

nav a
{
    font-size: 1.3em;
    color: #181818;
    padding-bottom: 3px;
    text-decoration: none;
}

nav a:hover
{
    color: #760001;
    border-bottom: 3px solid #760001;
}
section
{
    display: flex;
    margin-bottom: 20px;
}

article, aside
{
    text-align: justify;
}

article
{
    margin-right: 20px;
    flex: 3;
    background-color: darkgray;
    box-shadow: 0px 2px 5px #1c1a19;
    border-radius: 5px;
    padding: 10px;
    color: white;
    margin-bottom: 20 px;
}

article h1
{
    margin-left : 20px;
    padding: 10px;
    border-bottom:1px dashed #760000;
}

article p
{
    font-size: 1em;
}

article b
{
    text-align: center;
    font-size: 1.1em;
}

article a
{
    font-size: 1em;
    color: #ffffff;
    padding-bottom: 1px;
    text-decoration: none;
}

article a:hover
{
    color: #760001;
    border-bottom: 1px solid #760001;
}

#conteneur_img
{
    display: flex;
    justify-content: center;
}

aside
{
    flex: 1.2;
    position: relative;
    background-color: #706b64;
    box-shadow: 0px 2px 5px #1c1a19;
    border-radius: 5px;
    padding: 10px;
    color: white;
    font-size: 0.9em;
}

aside a
{
    font-size: 1.3em;
    color: #281818;
    padding-bottom: 1px;
    text-decoration: none;
}

aside a:hover
{
    color: #760001;
    border-bottom: 2px solid #760001;
}

#logo
{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
}

#logo img
{   padding: 10px;
    width: 59px;
    height: 60px;
}

form {
    /* Uniquement centrer le formulaire sur la page */
    margin: 0 auto;
    /* Encadré pour voir les limites du formulaire */
    padding: 1em;
    border: 2px solid #CCC;
    border-radius: 1em;
  }

  .button {
    /* Pour placer le bouton à la même position que les champs texte */
    padding : 20px; /* même taille que les étiquettes */
    padding-left: 90px;
  }
  
  button {
    /* Cette marge supplémentaire représente grosso modo le même espace que celui
       entre les étiquettes et les champs texte */
    margin-left: .5em;
  }

  footer
{
    display: flex;
    background:  url('images/ico_top.png') no-repeat top center, url('images/separateur.png') repeat-x top, url('images/ombre.png') repeat-x top;
    padding-top: 25px;
}

footer p, footer ul
{
    font-size: 0.8em;
}

footer h1
{
    font-size: 1.1em;
}

#foot_text
{
    width: 28%;
}

#logo-lft
{
    width: 35%;
}
#logo_lft img
{
    margin-left: 50px;
    margin-right: 50px;
}

#mes_amis
{
    width: 31%;
}


#listes_amis
{
    display: flex;
    justify-content: space-between;
    margin-top: 0;
}



span
{
    border:1px dotted red;
    padding: 5px;
    border-radius: 4px;
    font-size: 1.2em;
    }