div.relative {
  margin: 50px auto;
  position: relative;
  max-width: 1200px;
  height: 600px;
  /* background-color: #ffaf21;
  border: 3px solid #73ad21; */
  box-shadow: 2px 2px 45px #000000;
  overflow: hidden;
  z-index: 2;
}

div.chat {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 25%;
  height: 100%;
  float: left;
  animation: chat-frame 2s ease 3s forwards;
  /*background-color: rgb(23, 32, 23);
  border: 3px solid #ffaf21; */
  opacity: 0;
}
@keyframes chat-frame {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}

div.player {
  position: absolute;
  top: 0;
  right: auto;
  width: 75%;
  height: 100%;
  float: right;
  opacity: 0;
  animation: player-frame 2s ease 2.5s forwards;
  /* background-color: rgb(25, 79, 160);
  border: 3px solid #ffaf21; */
}
@keyframes player-frame {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
div.relative2 {
  margin: 0px auto;
  top: -50px;
  position: relative;
  max-width: 1200px;
  height: 600px;
  /* background-color: #ffaf21;
  border: 3px solid #73ad21; */
}
div.message {
  position: absolute;
  right: 0px;
  bottom: 10px;
  top: -50px;
  color: whitesmoke;
  font-family: "Courier New", Courier, cursive;
  line-height: 27px;
  font-size: 70px;
  text-align: center;
  pointer-events: none;
  animation: message-frames 2s ease 2s forwards;
  opacity: 0;
}
@keyframes message-frames {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 0.8;
    left: 40%;
  }
}
div.menti {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 500px;
  max-height: 400px;
  float: left;
  opacity: 0;
  animation: menti-frame 2s ease 2.5s forwards;
  /* background-color: rgb(25, 79, 160);
  border: 3px solid #ffaf21; */
}
@keyframes menti-frame {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
