body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Georgia', serif;
  color: #f5f5dc;
  background-color: #1e1e1e;
}

.fundo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('quarto-antigo.jpg'); /* use a imagem que você escolheu */
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1);
  transition: transform 0.2s ease-out;
}

header {
  text-align: center;
  padding: 40px;
  background-color: rgba(30, 20, 20, 0.8);
}

main {
  height: 3000px;
  position: relative;
}

.objeto {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) scale(1);
  transition: transform 0.2s ease-out;
  text-align: center;
  background-color: rgba(60, 40, 40, 0.7);
  padding: 10px;
  border: 1px solid #6b4f3f;
  border-radius: 8px;
}

#objeto1 { top: 20%; }
#objeto2 { top: 40%; }
#objeto3 { top: 60%; }

.objeto img {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

#caixa-discos {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #3b2f2f;
  padding: 10px;
  border: 2px solid #6b4f3f;
  border-radius: 8px;
  z-index: 50;
}

.disco {
  font-size: 2em;
  cursor: pointer;
  margin: 5px;
  transition: transform 0.5s ease;
}

#diario {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4a3a3a;
  padding: 30px;
  border: 2px solid #6b4f3f;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  z-index: 100;
}

.oculto {
  display: none;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(30, 20, 20, 0.8);
  position: relative;
  z-index: 1;
}
