/* Background library */
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Georgia", "Times New Roman", serif;
  color: #f9e9d0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url("download (8).jpeg") center/cover fixed no-repeat;
}

/* Title */
h1 {
  margin-bottom: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 24px;
  color: #dfe8ff;
}

/* Room panel */
.room {
  background: rgba(12, 7, 4, 0.85);
  border-radius: 24px;
  padding: 22px 26px;
  width: 80%;
  max-width: 820px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 214, 170, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* CD image */
.cd {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 0 18px rgba(255, 230, 180, 0.7),
    0 14px 32px rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Journal */
textarea {
  width: 100%;
  min-height: 140px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(240, 220, 190, 0.6);
  background: rgba(10, 10, 10, 0.85);
  color: #f6efe5;
  resize: vertical;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.7);
  outline: none;
}
