@import url("https://fonts.googleapis.com/css?family=Pridi&display=swap");
* {
  box-sizing: border-box;
  font-family: "Pridi", serif;
}
.rect {
  position: absolute;
}
body {
  background-color: #eee;
  margin: 0;
}
html,
body {
  height: 100%;
  width: 100%;
}
video,
canvas,
span,
.signin_dialog,
.question_list {
  position: absolute;
}
canvas,
video {
  animation: 0.3s fade;
  opacity: 1;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.container {
  width: 100%;
  height: 100%;
}
.signin_dialog {
  /* display: none; */
  background-color: #809ee8;
  height: 100%;
  width: 100%;
  padding: 10px;
}
.g-signin {
  margin: 10px;
  width: 90%;
  max-width: 350px;
}
.g-signin:hover {
  cursor: pointer;
}
.signin_inner {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}
.question_list {
  background-color: #809ee8;
  width: 100%;
  min-height: 100%;
}
.question_header {
  padding: 10px;
  font-weight: 400;
  background-color: white;
  font-family: "Hack Nerd Font";
}
.question_bt {
  color: white;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.question_bt:hover {
  background-color: #809ed0;
  cursor: pointer;
}
.profile_img {
  border-radius: 50%;
  height: 30px;
  width: 30px;
  object-fit: cover;
  border: 1px solid black;
  float: right;
}
.alert {
  position: absolute;
  bottom: 35px;
  left: 50%;
  color: black;
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 5px;
  font-weight: normal;
  z-index: 9999999999999999;
  padding: 10px;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 90%;
}
.alert_fade {
  opacity: 1 !important;
  animation-delay: 1.5s;
  animation-name: fade;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.alert_force {
  opacity: 1 !important;
}
@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
