@-ms-viewport{
    width: device-width;
}

body{
  margin: 0;
  font-family: 'Abel', sans-serif;
}

#tout{
  height: 100vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

#header{
  /* position: fixed; */
  /* top: 10px; */
  /* left: 50%; */
  /* width: 60%; */
  /* margin-left: -30%; */
  background-color: black;
  color: white;
  padding: 10px 10px 5px 10px;
  display: flex;
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  z-index: 1;
}

#footer{
  /* position: fixed; */
  /* bottom: 10px; */
  /* left: 50%; */
  /* width: 60%; */
  /* margin-left: -30%; */
  text-align: center;
  background: black;
  color: white; 
  padding: 3px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#footmobile{
  display: none;
}

#containerglobal{
  display: flex;
  align-items: center;
  justify-content: center;
  flex:1;
  text-align: center;
  box-sizing: border-box;
  margin-top: -5%;
}

.partiegauche{
  display: flex;
  flex-direction: column;
  width: 20%;
}
@media screen and (max-width: 740px) {
.partiegauche{
  display: none;
  }
}

#partiedroite{
  display: none;
}
#back{
  height: 100%;
}
.lien{
border: solid 1px;
margin:10px;
}
.lien:hover{
  border: dashed 1px;
  background-color: ghostwhite;
}

.partiecentre{
  flex: 1;
  padding-right: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.none{
  display: none;
}
.flex{
  display: flex;
  width: 50%;
}

a:link{text-decoration:none}

@media screen and (max-width: 740px) {
#containerglobal{
  flex-direction: column;
}

.partiecentre{
  padding-right: 0%;
}
#footmobile{
  display: block;
  margin-left: 20px;
}

}

.fond {
  background: url("../img/psyche.gif") no-repeat center center fixed; 
  color: yellow;
  background-color: black;
  z-index: 0;
}
    
#menuacc{
  flex:1;
  display:flex;
  align-items: center;
  justify-content: center;
}
    
.menu a{
	color: black;
	text-decoration: underline;
}

#menu, .sub-menu {
  display: none;
  list-style: none;
}

/*Change toggle size by adjusting width & height*/
.tb-menu-toggle {
  border: 0;
  position: relative;
  background: transparent;
  cursor: pointer;
  margin: 5px;
  margin-left: 30px;
}

/*Change toggle color here*/
.tb-menu-toggle i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  -webkit-transition:all .2s;
   -moz-transition:all .2s;
     -o-transition:all .2s;
        transition:all .2s;
}
.tb-menu-toggle i:nth-child(2) {
  top: 40%;
}
.tb-menu-toggle i:nth-child(3) {
  top: 80%;
}

/* Style the active toggle here */
.tb-menu-toggle.tb-active-toggle i {  }

/*Animation of the toggle*/
.tb-menu-toggle.tb-animate-toggle i:first-child,
.tb-menu-toggle.tb-animate-toggle i:nth-child(2){ 
  top: 40%;
  -webkit-transform:rotate(45deg);
   -moz-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
     -o-transform:rotate(45deg);
        transform:rotate(45deg);
} 
.tb-menu-toggle.tb-animate-toggle i:nth-child(3){ 
  top: 40%;
  -webkit-transform:rotate(-45deg);
   -moz-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
     -o-transform:rotate(-45deg);
        transform:rotate(-45deg);
}