html {
    margin: 0;
    padding: 0;
}
/* toutes les info si-dessous concerne la page Home*/
.container{
    height: 100vh;
    width: 100%;
    background-image: url("../images/background.png");
    background-position: center;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    position: relative;
}
.navbar{
    width: 100%;
    height: 15vh;
    margin: auto;
    display: flex;
    align-items: center;  
}
.logo{
    width: 265px;
    cursor: pointer;   
}
nav{
    flex: 1;
    padding-left: 60px
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 0px 20px;
}
nav ul li a{
    text-decoration: none;
    color: #333;
}
.content h1{
    font-size: 60px;
    font-weight: 100;
    margin-top: 24px;
    margin-bottom: 15px;
    color: #232d60;
}
.content p{
    font-size: 20px;
    color: #6a7190;
}
.content{
    margin-left: 10%;
    margin-top: 10%;
}
.content .btn{
    display: inline-block;
    background:
      radial-gradient(circle at 50% 0,
        rgba(255,0,0,.5),
        rgba(255,0,0,0) 70.71%),
      radial-gradient(circle at 6.7% 75%,
        rgba(0,0,255,.5),
        rgba(0,0,255,0) 70.71%),
      radial-gradient(circle at 93.3% 75%,
        rgba(0,255,0,.5),
        rgba(0,255,0,0) 70.71%) beige;
    border-radius: 6px;
    padding: 10px 20px;
    box-sizing: border-box;
    text-decoration: none;
    color: #fff;
    box-shadow: 3px 8px 22px rgba(94,28,68,0.15);
}
.feature-img{
    height: 65%;
    position: absolute;
    bottom: 0; 
    right: 195px;
}/* toute les infos si-dessous concerne la page Histoire*/
.container-histoire{
    height: 100vh;
    width: 100%;
    background-image: url("../images/background-histoire.png");
    background-position: center;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    position: relative;
}
.navbar-histoire{
    width: 100%;
    height: 15vh;
    margin: auto;
    display: flex;
    align-items: center;
}
.logo-histoire{
    width: 265px;
    cursor: pointer;
}
nav-histoire{
    flex: 1;
    padding-left: 60px
}

nav-histoire ul li{
    display: inline-block;
    list-style: none;
    margin: 0px 20px;
}
nav-histoire ul li a{
    text-decoration: none;
    color: #333;
}
.content-histoire h1{
    font-size: 20px;
    font-weight: 50;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #333;
}
.content-histoire p{
    font-size: 17px;
    color:#333;
}
.content-histoire{
    margin-left: 0%;
    margin-top: 0%;
}
.feature-img-histoire{
    height: 75%;
    position: relative;
    left: 850px; 
    top: -550px;
}/*toutes les infos si-dessous concerne la page Soucis*/
.container-soucis{
    height: 100vh;
    width: 100%;
    background-image: url("../images/background-soucis.png");
    background-position: center;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    position: relative;
}
.navbar-soucis{
    width: 100%;
    height: 15vh;
    margin: auto;
    display: flex;
    align-items: center;
}
.logo-soucis{
    width: 265px;
    cursor: pointer;
}
nav-soucis{
    flex: 1;
    padding-left: 60px
}

nav-soucis ul li{
    display: inline-block;
    list-style: none;
    margin: 20px 30px;
    
}
nav-soucis ul li a{
    text-decoration: none;
    color: #6a7190;
}
.content-soucis h1{
    font-size: 60px;
    font-weight: 100;
    margin-top: 24px;
    margin-bottom: 15px;
    color: #232d60;
}
.content-soucis p{
    font-size: 20px;
    color: #6a7190;
}
.content-soucis{
    margin-left: 10%;
    margin-top: 10%;
}
.feature-img-soucis{
    height: 40%;
    position: absolute;
    bottom: 0; 
    right: 0px;
}
.feature-img2-soucis{
    height: 30%;
    position: relative;
    left: 10px; 
    top: -650px;
}/*toutes les infos si-dessous concerne la page Source*/
.container-sources{
    height: 100vh;
    width: 100%;
    background-image: url("../images/background-sources.png");
    background-position: center;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    position: relative;
}
.navbar-sources{
    width: 100%;
    height: 15vh;
    margin: auto;
    display: flex;
    align-items: center;
}
nav-sources{
    flex: 1;
    padding-left: 60px
}

nav-sources ul li{
    display: inline-block;
    list-style: none;
    margin: 0px 50px;
}
nav-sources ul li a{
    text-decoration: none;
    color: #333;
}
.logo-sources{
    width: 265px;
    cursor: pointer;
}
table{
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 8px 12px rgba(32,32,32,.3);
    background: #fafafa;
    text-align: center;    
}
th,td{
    padding: 12px 15px;
}
th{
    background: #ffc0cb;
    color: #fafafa;
    text-transform: uppercase;   
}

tr:nth-child(odd){
    background-color: #eeeeee;
}


    

