@import "article.css";
@import "images.css";

html {
    line-height: 1.15; /* 1 */
}
body {
    margin: 0;
    min-height: 100vh;
}

* {
    margin: 0;
    padding: 0;
}

/*Font des pages*/
body {
    font-size: medium;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
body>header{
    font-size: xx-large;
}

header {
    background-color:rgba(2, 138, 68, 0.9);
    color:#ffffff;
    font-size: large;
}

/*Diposition des différents bloques du corps */
body>header{
    display: block;
    text-align: center;
}

nav{
    display: block;
    margin-top: 0.01em;
    background-color:rgb(2, 138, 68);
}

article, aside{
    display: block;
    padding: 0.4%;
    height: 100%;
}

body>aside{
    float: left;
    width: 30%;
    min-height: 50em;
    }
    
body>article{float: left;
    width: 68%;
}

body>footer{
            clear: both;
            display: block; }

/*Menu*/
nav{
    min-height: 3.25em;
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
}

ul{   
    background-color: transparent;
    width: 100%;
    min-height: 3.25em;
}

li{
    min-width: 20%;
    min-height: 3.25em;
    text-align: center;
    line-height: 3.20em; /* interligne */
    padding: 0 10px; /* marges intérieur */
    display:inline-block;
}

nav>ul>li>a {
    text-decoration: none;
    padding: 4px 0 4px;
    line-height: 3.15em; /* interligne */
    transition: .5s;    
    color: #ffffff;
    display: block;
    height: 3.15em;
}    

/* tous liens lors du survol dans la balise nav */
nav>ul>li>a:hover{ 
            background: #ffffff; /* couleur de fond */
            color: rgb(2, 138, 68);
}

/*Bannier*/
.bannier {
    position: relative;
    height: 100%;
    width: 100%;
    background: none;
  }

/*Blockquote*/
blockquote {
    background: #f9f9f9;
    border-left: 10px solid #cccccc;
    color: rgb(2, 138, 68);
    quotes:"«" "»";
}
blockquote>p:before {
    color: #cccccc;
    content: open-quote;
    line-height: 0.1em;
    margin-right: 0.25em;
    
}
blockquote>p:after {
    color: #cccccc;
    content: close-quote;
    line-height: 0.1em;
    margin-right: 0.25em;
}
/*foot*/
footer {
    text-align: right;
}
footer>p {
    font-size: xx-small;
}

@media only screen and (max-width: 650px){
    li{
        display: block;
    }
    body>aside{
        float: none;
    }
    body>article{
        min-width: 100%;
    }
    
    h1{font-size: x-large;}
}

