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('/bedbg.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
}

#button {
  position: absolute;
  left: 50px;
  top: 570px;
  width: 270px;
  background: rgba(0,0,0,0.8);
  color: white;
  font-size: 14px;
  padding: 5px 10px;
  border: 2px solid white;
}

#button a:visited {
  color: white;
}

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


.objects {
  position: absolute;
  width: 300px;
  height: 350px;
  border: 2px solid white;
  z-index: 2;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
  background: rgba(0,0,0,0.8);
  
}

iframe {
  width: 100%;
  height: auto;              
  min-height: 315px;
  border: none;
  overflow: hidden;
}

.dreamjournal {
  left: 50px;
  top: 150px;
  width: 290px;
  overflow: auto;
}

.sleepjournal {
  left: 375px;
  top: 250px;
  width: 290px;
  overflow: auto;
}


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

.content {
  font-size: 10px;
}



