/* spinner.css */
.lds-ring {
  display: inline-block;
  position: relative;
  min-width: 80px;
  min-height: 80px;
  width: 80px;
  height: 80px;
  margin: auto;
  text-align: center;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* style.css */
body {
  background-color: #aaaaaa;
  margin: 0px;
}
@font-face {
  font-family: "IndieFlower";
  src: url("./IndieFlower-Regular-MMQ6D5WT.ttf") format("truetype");
}
.question-div {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 40%;
}
.textbox-div {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-self: self-end;
  width: 60%;
  height: 200px;
  font-family: "IndieFlower";
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.textbox-div::-webkit-scrollbar {
  display: none;
}
.question-button {
  flex: 1 1 auto;
  display: inline;
  margin-bottom: 6px;
  font-size: 20px;
  border-width: 5px;
  border-radius: 15px;
  border-style: unset;
  outline: 1.5px solid;
}
.question-button:hover {
  background-color: black;
  color: white;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.angel-dialogue-box {
  text-align: right;
  align-self: self-end;
  display: inline-flex;
  background-color: #d2c9a5;
  color: #4d4539;
  opacity: 0;
  animation: fadeIn 0.25s ease-in-out forwards;
}
.demon-dialogue-box {
  text-align: left;
  align-self: self-start;
  display: inline-flex;
  background-color: #574852;
  color: #d2c9a5;
  opacity: 0;
  animation: fadeIn 0.25s ease-in-out forwards;
}
.unknown-dialogue-box {
  text-align: center;
  color: red;
  flex: 1 1 auto;
  display: inline;
}
.pfp-svg {
  width: 60px;
  height: 60px;
}
.demon-pfp {
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 10px;
  width: 60px;
  height: 60px;
  position: relative;
}
.angel-pfp {
  width: 60px;
  height: 60px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 10px;
  position: relative;
}
.dialogue-text {
  margin-top: auto;
  margin-bottom: auto;
}
.loading-container {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.game-container {
  width: 768px;
  height: 432px;
  border: 0px solid #392a1c;
  overflow: scroll;
  background-color: #89609C;
}
.eyeCanvas {
  position: absolute;
  width: 60;
  height: 60;
}
.logo {
  margin: auto;
}
.loading-bar {
  width: 350px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}
