/* ================ Header ================ */

img.work{
    height: 15%;
    width: 15%;
    margin-left: 40%;
}


ul.sommaire{
    color: lightgrey;
    padding: 8px;
}

nav.menu ul li.btn{
    list-style-type: none;
    display: inline-block;
}

nav.menu ul li.btn a{
    color: lightgrey;
    background-color: darkblue;
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
    border-radius: 10px;
}

nav.menu ul li.btn:hover a{
    color: darkblue;
    background-color: lightgrey;
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
    border-radius: 10px;
    transition: 0.3s all;
}

h1{
    color: lightgrey;
    font-size: 50px;
    margin-left: 40%;
}

/*================== Body ====================*/

body {	
    background-color: rgb(0, 160, 255);
    background-image: url(../img/bg_body.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 8em;
    padding-bottom: 8em;
    
    color: lightgray;
    font-family: "Sofia", sans-serif;
    font-size: 112.5%;
    line-height: 1.6em;
}

div#description{
    display: flex;
}

div#description div{
    display: inline-block;
    width: 48%;
    padding: 1em;
}

div#description div.leftBox{
    background-color: rgb(128,128,128, 0.4);
    vertical-align: top;
    border-radius: 30px;
    margin:15px;
}

div#description div.leftBox div.Content{
    margin-top: 15px;
    width: 97%;
}

div#description div.rightBox{
    background: rgba(0, 0, 139, 0.3);
    border-radius: 30px;
    margin:15px;
    
}

div#description div.rightBox p{
    color: lightgrey;
}

a {
    border-radius: 1em;
    background-color: darkblue;
    color: lightgrey;
    padding: 13px;
    text-decoration: none;
}
  
a:hover {
    background-color: lightgrey;
    color: darkblue;
}
  
a:active {
    background-color: black;
}