/* codetemporaire */
body {
    width: 100%;
    background-color: grey;
}

header {
    border: 1px solid blue;
    width: 100%;
    height: auto;
    background-color: rgb(197, 193, 193);
}

nav {
    border: 1px solid green;
    width: 100%;
    background-color: azure;
    height: auto;
}

aside {
    border: 1px solid red;
    width: 29%;
    float: left;
    height: auto;
}

aside p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: red;
}

section {
    border: 1px solid yellow;
    float: right;
    width: 70%;
    height: auto;

}

article {
    border: 1px solid black;
    background-color: rgb(141, 136, 136);
    height: auto;
}

figure {
    border: 2px solid rgb(90, 38, 38);
    background-color: rgb(90, 38, 38);
    width: 20%;
    height: auto;
    float: right;
}

footer {
    border: 2px solid blue;
    background-color: blue;
    clear: both;
    width: 100%;
    height: auto;
}

/* cofindtemporaire */