body{
  background-image: url("/images/mainbg.jpg");
  background-size: contain;
  background-attachment: fixed;
}

.main{
  position: fixed;
  width: 1080px;
  height: 800px;
  margin-bottom: 50px;
  padding: 10px;
}

.barre{
  box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #dfdfdf, inset -2px -2px grey, inset 2px 2px #fff;
  background-color: lightgrey;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.barre-contenu {
  padding: 6px 6px;
}
  
.main-contenu{
  padding: 15px 15px;
}

.logicon {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.boutton {
  width: 176px;
  height: 62px;
  margin: 5px;
}

.ghost {
  width: 186px;
  height: 290px;
  position: fixed;
  bottom: 50px;
  right: 15px;
}

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #dfdfdf, inset -2px -2px grey, inset 2px 2px #fff;
  width: 160px;
  background-color: lightgrey;
  color: #555;
  text-align: center;
  font-family: "New couriel";
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  top: 600px;
  right: 0;
  margin-right: -1700px;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}