body {
  font-family: monospace;
  margin: 0;
  background: black;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#info {
  position: absolute;
  background: rgba(255,255,255,0.8);
  color: black;
  font-size: 14px;
  padding: 5px 10px;
  border: 1px solid black;
  display: none;
  pointer-events: none;
  z-index: 100;
}

#viewport {
  width: 700px;
  height: 700px;
  overflow: hidden;
  position: relative;
}

#room {
  width: 720px;
  height: 720px;
  position: relative;
  transform-style: preserve-3d;
  
}


#background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('/music.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
}

#mdescripcont {
  position: absolute;
  top: 345px;
  left: 50px;
  width: 620px;
  height: 200px;
  overflow-y: auto;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  scrollbar-width: thin;
}


#button {
  position: absolute;
  left: 50px;
  top: 570px;
  width: 580px;
  background: #3a11cf;
  color: white;
  font-size: 14px;
  padding: 5px 10px;
  border: 2px solid white;
}

#button a:visited {
  color: white;
}

#button a:hover {
  color: #9FFF85;
}

#player {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 600px;
}


#playerbutton {
  position: absolute;
  left: 50px;
  top: 310px;
  width: 580px;
  background: #3a11cf;
  color: white;
  text-align: center;
  font-size: 14px;
  padding: 5px 10px;
  border: 2px solid white;
}

#playerbutton a:visited {
  color: white;
}

#playerbutton a:hover {
  color: #9FFF85;
}

.objects {
  position: relative;
  width: 190px;
  height: 185px;
  border: 2px solid white;
  z-index: 2;
  background-size: cover;
  background-repeat: no-repeat;
  transition: filter 0.2s ease, transform 0.2s ease;
  background: rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 10px;
}

.minibutton {
  display: inline-block;
  width: 170px;
  background: #3a11cf;
  color: white;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  padding: 5px 10px;
  border-top: 2px solid white;
}

.minibutton a, a:visited {
  color: white;
}

.minibutton a:hover {
  color: #9FFF85;
}


.title {
  font-size: 14px;
  margin-left: 5px;
  margin-bottom: 5px;
}

#content {
  height: 130px;
  font-size: 12px;
  padding: 5px;
  overflow-y: scroll;
  scrollbar-width: thin;
}

.fix {
  height: 100px;
}



