*
{
    box-sizing: border-box;
}
 
body
{
    margin: 0 auto;
    min-height: 100%;
    width: 80%;
    /*background-color: #fafafa;*/
    background-image: url("../images/hannah-rodrigo.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
}
 
canvas {
    
    border-radius: 20px;
    margin: 0 auto 20px auto;
    background: #fff;
    cursor: crosshair;
    box-shadow: 0 0 8px 1px #2C3E50;
    width:100%;
    height: 100%;
}



canvas + canvas
{
    margin-left: 2em;
}

 
h1
{
    color: #fafafa;
    letter-spacing: 0.1em;
    text-shadow: 0 0 4px #E79C94;
}
 
hr
{
    border-color: red;
}

fieldset {
    box-shadow: 0 0 8px 1px #2C3E50;
    background: #fff;
    border-radius: 20px;
    margin-bottom:40px;
}  

.btn {
    color:#fff;
}

main
{
    margin: 2em 0;
}
 
.container {
    width: 80%;
    margin:0 auto;
    display:inline-block;

}
/********************** CLASSES GENERALES **********************/
 
.hide
{
    display: none;
}
 
 
/********************** PALETTE DE COULEURS **********************/
 
.palette
{
    cursor: crosshair;
}
 
.color {
    color:blue;
}

/*crayons */

.pencil-color
{
    display: inline-block;
    height: 2em;
    position: relative;
    top: 0.5em;
    width: 2em;
    border-radius: 1em;
}
.pencil-color.black
{
    background-color: black;
}
.pencil-color.blue
{
    background-color: #0378A6;
}
.pencil-color.green
{
    background-color: #13B813;
}
.pencil-color.maroon
{
    background-color: #5C2121;
}
.pencil-color.red
{
    background-color: #B9121B;
}
.pencil-color.seagreen
{
    background-color: #029E9A;
}
.pencil-color.yellow
{
    background-color: #FFBD07;
}
 
.pencil-color + .pen-color
{
    margin-left: 1em;
}

/************************   ARDOISE   ***************************/

#ardoise {
   

}

/********************** BARRE D'OUTILS **********************/

.barreoutils {
    background-color: rgba(255,255,255,0.2);

}
 
.barreoutils ul
{
    text-shadow: 0 0 4px #E79C94;
    padding-left: 0;
    list-style-type: none;
}

.barreoutils ul li
{
    padding: 15px;
/*    height: 2.5em;
    margin-bottom: 0.5em;*/
}

.barreoutils ul li label
{
    display: inline-block;
    line-height: 2.5em;
    width: 100px;
    color: #000;
    font-weight: bold;
}

@media screen and (max-width: 992px) {

    .barreoutils ul li label {
        display:block;
    }






