*{
  box-sizing: border-box;
}
body{
  height: 100%;;
  padding: 0px;
  margin: 0px;
  overflow-y: scroll;
}
.contenair{
  transform: translate3d(0px, 0px, 0px);
  position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    webkit-box-sizing: content-box;
    box-sizing: content-box;
}



a
{
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
}

a:hover
{
  color: tomato;

}

#menuToggle
{
  display: block;
  position: relative;
  top: 50px;
  left: 50px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0;
  z-index: 2;

  -webkit-touch-callout: none;
}


#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #cdcdcd;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}


#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}


#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}


#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}


#menu
{
  position: fixed;
  width: 200px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;

  background: #ededed;

  opacity: 0.8;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;


  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}


#menuToggle input:checked ~ ul
{
  transform: none;
}
.enter{
  display: flex;

    align-items: center;
    width: auto;
    margin-left: 60px;
    margin-right: 60px;
    height: calc(100vh - 20px);
    margin-top: 20px;
}
.enter h3, p{
  text-align: center;
}
.enter1{
  display: flex;
  flex-direction: column;
    align-items: center;
    width: auto;
    margin-left: 60px;
    margin-right: 60px;
    height: calc(60vh - 20px);
    margin-top: 240px;
}
.enterV {
  display: flex;

    align-items: center;
    width: 20px;
    margin-left: 20px;
    margin-right: 40px;
    height: calc(100vh - 20px);
    margin-top: 10px;
}
.enterV p{

  font-size: 48px;
transform: rotate(-90deg);


}
h2{
  margin-bottom: 0px;
  margin-top: 2px;
  font-size: 64px;
}
.img1{
  height: calc(100vh - 20px);
  margin-left: 100px;
  margin-right: 100px;
  height: calc(100vh - 20px);
  margin-top: 10px;

}
.img1 img{
  height: 90%;
}
.Apropos p{
  text-align: justify;
  font-size: 20px;
  height: 600px;
  width: 300px;
  margin-top: 240px;
  margin-left: 100px;
  margin-right: 100px;
}

.element {
  display: inline-block;
padding-top: 15px;
  height: 250px;
  width: 250px;
  padding: 1px;
  margin-right: 10px;
  margin-left: 10px;
  animation: roll 4s infinite;
  transform: rotate(30deg);
  opacity: .9;


}

.element img{
  width: 100%;

}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
