.perso {
  position: absolute;
  left: 100px;
  top: 100px;
  display: none;
}

.monster {
  position: absolute;
  left: 300px;
  top: 100px;
  display: none;
}

.pnj {
  position: absolute;
  left: 300px;
  top: 100px;
  display: none;
}

.action-button {
  display: flex;
  position: absolute;
  left: 100px;
  top: 200px;
}

.action-button button {
  margin: 0 1em;
  display: none;
}

#message {
  position: absolute;
  left: 200px;
  top: 250px;
}

#player-attack {
  position: absolute;
  left: 165px;
  top: 70px;
  display: none;
}

.player {
  position: relative;
  left: 100px;
  top: 400px;
}

#intro {
  position: absolute;
  width: 100%;
  height: 100%;
  background: purple;
  z-index: 1;
  text-align: center;
}

#intro > div {
  color:green;
  position:absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

#intro h1:hover {
  animation: clignote 2s linear infinite;
}

h1 {
  margin: 2em 0;
}

#load-page {
  display: none;
}

#save-page {
  display: none;
}

.footer-button {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);  
  bottom: 60px;
}

#inventory-pnj {
  position: absolute;
  left: 400px;
  top: 40px;
}

#inventory-pnj li,
#inventory li {
  padding: 0 2em;
  border: none;
}

#inventory-pnj li {
  background: transparent;
  color: white;
}

#inventory-pnj button,
#inventory button {
  padding: 0 1em;
}

#inventory.hide .equip {
  display: none;
}

#background {
  position: absolute;
}

@keyframes clignote {  
  50% { opacity: 0; }
}
