/* fonts */

@font-face {
    font-family: "radiospace";
    src: url("../fonts/radiospace.woff") format("woff");
   }

body {
    font-family: lato;
    color: rgb(0, 0, 0);
    /*background: rgb(10, 10, 10)*/
}

/* Général */

body{
    display: flex;
}
.container{
    width: 100%;
    max-width: 1224px;
    min-height: 100vh;
    margin: auto;
    /*background: black;*/
    box-shadow: 0 0px 8px black;
}

img{
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: radiospace;  
}

h1{
    font-size: 3em;
    color: rgb(255, 255, 255);
    margin: 25px 20px;
}

h2{
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

p {
    line-height: 20px;
    margin: 20px 0;
    text-align: justify;
}

a{
    text-decoration: none;
}

/* header */

header{
    background: url("../img/banniere.jpg") center no-repeat;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header h1{
    text-shadow: 8px 8px 5px black;
}

/* nav */

.nav_header{
    width: 100%;
    height: 50px;
    font-family: radiospace;
    color: white;
    font-size: 1.4em;
    background: rgba(0, 0, 0, .7);
    display: flex;
    justify-content: flex-start;
    position:sticky;
    top: 0;
    margin-top: -50px;
}

.nav_header a{
    color: white;
}

.nav_header a:hover{
    transition: 0.5s;
    color: grey;
}

.nav_header ul {
    height: 50px;
    display: flex;
    align-items: center;
}

.nav_header ul li {
    margin-left: 20px;
}

/* container body */

.container_body {
    display: flex;
}

.container_left {
    width: 80%;
    padding: 0 18px;
}

.container_left article {
    margin: 30px 0 50px 0;
}

.title_block {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgb(41, 41, 41);
}

.title_block_left {
    display: flex;
    flex-direction: column;
}

.title_block_left span {
    font-family: radiospace;
    font-size: 0.8em;
    margin: 5px 0 0 6px;
}

.title_block_right {
    height: 100px;
    width: 100px;
    background: url(../img/micro.png) center no-repeat;
}

.container_right {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 5px;
}

.search input {
    height: 20px;
    width: 200px;
    text-align: center;
    font-family: radiospace;
    font-size: 1.1em;
    color:rgb(65, 65, 65);
    /*border: none;*/
}

.search input:focus{
    outline: 0;
}

.logo {
    margin: 20px 0;
}

.logo img {
    max-width: 180px;
}

/* footer */
footer{
    padding: 18px;
    height: 500px;
    border-top: 1px solid rgb(41, 41, 41);
    background: rgb(10, 10, 10);
}

