* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

#debug {
  display: none;
}

/*ÉLEMENTS DU MONDE*/
 
#playlist {
  width: 300px;
  height: 300px;
/*  border: 1px solid black;*/
  user-select: none;
}


.lignes {
  overflow-y: scroll;
  max-height: 90%;
  background-color: #95EBA9;
}

.historique {
  height: 10%;
  background-color: #56D974;
}


.ligne {
  height: 50px;
  border: 2px solid #56D974;
  user-select: none;
}

#play {
  width: 200px;
  height: 100px;
  background-color: yellow;
  padding: 10px;
}

#pause {
  width: 150px;
  height: 150px;
  background-color: #B6B6B6;
  padding: 10px;
}

#titre {
  width: 600px;
  height: 100px;
  background-color: pink;
  padding: 10px;
}

#tapis {
  width: 130px;
  height: 130px;
  background-color: #FF5733;
  padding: 10px;
}

#etagere {
  width: 100px;
  height: 10px;
  background-color: brown;
}

#chat {
  width: 330px;
  height: 400px;
}

#speaker{
  width: 160px;
  height: 200px;
  background-color: black;
}

.rond{
  position: absolute;
  background-color: grey;
  border-radius: 50%;
  display: inline-block;
  transform: translate(-50%);
}

#rond1{
  top: 40%;
  left: 50%;
  width: 100px;
  height: 100px;
}

#rond2{
  top: 10%;
  left: 50%;
  width: 40px;
  height: 40px;
}


/*MURS*/

.bordure_h {
  height: 500px;
  width: 150vw;
  pointer-events: none;
/*  background-color: yellow;*/
}

.bordure_v {
  height: 150vh;
  width: 500px;
  pointer-events: none;
/*  background-color: yellow;*/
}

