/* ONLY affects the otome game */
.otome-container {
  width: 600px;
  height: 400px;
  position: relative;
  overflow: hidden;

  border: 3px solid crimson;
  border-radius: 10px;
  margin: 20px auto;
  background: black;
}

/* Scope everything inside */
.otome-container .otome-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/bg-night.jpg');
  background-size: cover;
}

.otome-container .otome-character {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 90%;
}

.otome-container .otome-dialogue {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  padding: 10px;
}

.otome-container .otome-name {
  color: crimson;
}

.otome-container .otome-text {
  color: white;
}