HTML CSSResult Skip Results Iframe
EDIT ON
/*Reset CSS*/

html, body {
    height: 100%;
    margin: auto;
    padding: 0;
    background-color: #141414;
    color: white;
    font-family: Arial;
    text-align: center;
}

  .dark-mode {
    background-color: #ebebeb;
    color:  #141414;
  }

iframe{
    background-color: #141414
}

a{
    color: white;
    text-decoration: none;
    font-family: Arial;
    font-size: 18px;
}

h6 a{
    color: white;
    text-decoration: none;
    font-family: Arial;
    font-size: 14px;
	margin: 0px auto;
    border: 1px solid white;
    background: #0081c7;
    width: 250px;
    border-radius: 10px;
    padding: 0;
    margin: 15.3px;
    display: block; /*Toute la surface sera cliquable*/
    text-decoration: none;
    color: white;

    padding: 13px 0px;/*Agrandit le menu et espace la bordure du texte*/
}

h6 a:hover {
    background-color: #ffcc00;
    border-radius: 10px;
}

h5 a{
    color: white;
    text-decoration: none;
    font-family: Arial;
    font-size: 14px;
	margin: 0px auto;
    border: 1px solid white;
    background: #1fa22d;
    width: 250px;
    border-radius: 10px;
    padding: 0;
    margin: 0;
    display: block; /*Toute la surface sera cliquable*/
    text-decoration: none;
    color: white;
    padding: 13px 0px;/*Agrandit le menu et espace la bordure du texte*/
}

h5 a:hover {
    background-color: #ffcc00;
    border-radius: 10px;
}

h3 a{
    color: #1fa22d;
    font-size: 18px;
}

hr {
    background-color: #6b6b6b;
    border-radius: 1px;
    border: 0px solid;
    color: #fff;
  }
  .dark-mode {
    background-color: #ebebeb;
  }

  iframe {
    border-radius: 10px;
    background-color: #ffffff;
  }

/*-----------------------------------------------------------------------------------------------*/
nav{
	margin: 0px auto;
    border: 1px solid white;
    background: #0081c7;
    width: 80%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 0;
    margin: 0;
}

nav ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li:hover {
    background-color: #ffcc00;
    position: relative;
    z-index: -1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

nav ul li{
    float: left;
    width: 50%;/*100% divisé par le nombre d'éléments de menu*/
    text-align: center;/*Centre le texte dans les éléments de menu*/
    margin: 0;
    padding: 0;
}

nav a{
    display: block; /*Toute la surface sera cliquable*/
    text-decoration: none;
    color: white;
    border-bottom: 0px solid transparent;/*Evite le décalage des éléments sous le menu à cause de la bordure en :hover*/
    padding: 15px 0px;/*Agrandit le menu et espace la bordure du texte*/
}

.conteneur{
    margin: 0px 0px;
    height: 1500px;
} 

nav #li-deb{
    border-right: 1px solid white;
}

nav #li-mid{
    border-right: 1px solid white;
    border-left: 1px solid white;
}

nav #li-fin{
    border-left: 1px solid white;
}

.submenu{
    display: none;
}

nav ul::after{
    content: "";
    display: block;
    clear: both;
}

/*----------------------------------------------------------------------------------------------------*/

img{
    border-radius: 1px;
}

.img-responsive{
    max-width : 100%;
    width: auto;
    height: auto;
    display: block;

    height: calc(100% - 100px);
}

.banier{
    border: solid 1px white;
    border-radius: 10px;
    background: #141414;
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 25%;
    color: white;
    justify-content: space-around;
}

.banier-text{
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnligne{
    background: #141414;
    top: 2px;
    color: white;
    margin: 0px auto; 
    padding: 0px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.btnligne2{
    background: #141414;
    top: 2px;
    color: white;
    margin: 0px auto; 
    padding: 0px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.btnligne-item{
    width: 23%;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .btnligne-item {
        width: 50%;
        
    }
    .btnligne{
        margin: 2%;
        padding: 2%;
    }
    }

.container {
    display: flex;
    align-items: center;
}
  
.column1 {
    flex: 1;
    padding: 0px;
}

.column2 {
    flex: 1;
    padding: 0px;
}

.column3 {
    flex: 1;
    padding: 0px;
}

.base-div-gal {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    height: auto;
}
  
.bdg-1 {
    flex: 1;
    padding: 0px;
}

.bdg-2 {
    flex: 1;
    padding: 0px;
}

.bdg-3 {
    flex: 1;
    padding: 0px;
}

.text-div-gal{
    margin-bottom: 25%;
}

::selection {
    color: white;
    background: #1fa22d;
  }
  /* width */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #141414; 
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(#0081c7, #ffcc00, #1fa22d);
    border-radius: 7px;
    border: 1px solid white;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#0081c7, #ffcc00, #1fa22d);
    border-radius: 7px;
    border: 1px solid white;
  }