/*Version 1.0 of Visual Novel Engine*/
body {
  align: center;
}

.novel-font {
  font-size: 26px;
  font-weight: bold;
  color: black;
  font-family: 'Times New Roman', Times, serif;
}

#novel-screen {
  background-color: black;
  width: 800px;
  height: 600px;
  position: relative;
}

#novel-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  object-fit: contain;
}

#novel-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#novel-char {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

#novel-char-name {
  position: absolute;
  left: 30px;
  right: 500px;
  bottom: 200px;
  height: 40px;
  z-index: 3;
}

#char-name {
  width: 180px;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

#novel-textbox {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 60px;
  height: 120px;
  z-index: 3;
}

#textbox {
  width: 700px;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  resize: none;
}

#novel-advance {
  position: absolute;
  left: 250px;
  right: 250px;
  bottom: 10px;
  height: 30px;
  opacity: 0.75;
  z-index: 3;
}

#advance {
  width: 100%;
  height: 100%;
}

#novel-choice {
  position: absolute;
  display: flex;
  justify-content: space-between;
  top: 150px;
  bottom: 300px;
  left: 30px;
  right: 30px;
  z-index: 3;
  opacity: 0.5;
}

#choice-one {
  width: 40%;
  height: 100%;
}

#choice-two {
  width: 40%;
  height: 100%
}