:root {
  font-family: "Shippori Mincho", serif;
  overflow: hidden;
  --bg-dark: #0e0805;
  --bg-dark-trans: #0e0805cc;
  --accent1: #7d8474;
  --accent2: #787a6ccc;
  --bg-light: #e9e9df;
}

@font-face {
  font-family: "Faechatter";
  src: url("https://bad-assort.com/play/gothic/Faechatter-serif.woff");
  font-weight: normal;
  font-style: normal;
}

body,
main {
  width: 100%;
  height: 100%;
}

body {
  margin: 2px;
  background: var(--bg-dark);
  color: var(--bg-light);
}

div {
  box-sizing: border-box;
}

div#still-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

div#still-rel {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#title {
  position: absolute;
  margin: auto;
  top: 0;
  right: 5%;
  bottom: 10%;
  left: 0;
  max-width: 100%;
  rotate: -5deg;
  animation: 4s title;
  animation-fill-mode: forwards;
}

img#title-x {
  position: absolute;
  margin: auto;
  top: 0;
  right: 5%;
  bottom: 10%;
  left: 0;
  max-width: 100%;
  rotate: -5deg;
  animation: 4s title-x;
  animation-fill-mode: forwards;
  animation-timing-function: steps(2, end);
  z-index: -1;
}

@keyframes title {
  0% {
    opacity: 1;
  }
  74% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes title-x {
  0% {
    filter: hue-rotate(0deg);
  }

  5% {
    transform: translate(1px, 2px);
    filter: hue-rotate(30deg);
  }

  12% {
    transform: translate(-2px, -5px);
    filter: hue-rotate(200deg);
  }

  15% {
    transform: translate(4px, 2px);
    filter: hue-rotate(130deg);
  }

  18% {
    transform: translate(-6px, -3px);
    filter: hue-rotate(30deg);
  }

  25% {
    transform: translate(2px, 2px);
    filter: hue-rotate(300deg);
  }

  30% {
    transform: translate(-5px, -3px);
    filter: hue-rotate(220deg);
  }

  33% {
    transform: translate(3px, 6px);
    filter: hue-rotate(130deg);
  }

  40% {
    transform: translate(-1px, 2px);
    filter: hue-rotate(230deg);
  }

  45% {
    transform: translate(4px, -4px);
    filter: hue-rotate(330deg);
  }

  53% {
    transform: translate(-1px, 2px);
    filter: hue-rotate(230deg);
  }

  55% {
    transform: translate(1px, 2px);
    filter: hue-rotate(30deg);
  }

  60% {
    transform: translate(1px, 2px);
    filter: hue-rotate(30deg);
  }

  70% {
    transform: translate(1px, 2px);
    filter: hue-rotate(30deg);
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/*
 *  スチル用アニメ
 */

img.still {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: center center no-repeat;
  z-index: 0;
  opacity: 0;
}

img.still.still-pre {
  opacity: 1;
}

img.dive {
  animation: dive 5s;
  animation-fill-mode: forwards;
}

img#still2.dive {
  animation-delay: 0.5s;
}

img#still1.dive {
  animation-delay: 1s;
}

img.fade-in {
  animation: fade-in 1s;
  animation-fill-mode: forwards;
}

img.fade-in-slow {
  animation: fade-in 3s;
  animation-fill-mode: forwards;
}

img.fade-out-slow {
  animation: fade-out 3s;
  animation-fill-mode: forwards;
}

img.shimmer {
  animation: shimmer 6s;
  animation-fill-mode: forwards;
}

img.immi-in {
  opacity: 1;
}

img.immi-out {
  opacity: 0;
}

img.shock-in {
  opacity: 1;
  animation: 0.6s shock-in;
}

img.mono {
  animation: fade-in 1s;
  animation-fill-mode: forwards;
  filter: sepia(100%);
}

img.glow {
  opacity: 0.8;
  animation: 10s glow infinite;
}

img.noise {
  opacity: 1;
  animation: 2s noise infinite;
}

img.glitch,
img.glitch-repeat {
  opacity: 1;
}

img.glitch {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(10% 20% 85% 0);
  --slice-2: inset(27% 10% 70% 0);
  --slice-3: inset(48% 0 48% 15%);
  --slice-4: inset(59% 0 37% 20%);
  --slice-5: inset(73% 14% 20% 0);
  clip-path: var(--slice-0);
  animation: 3s glitch;
  animation-timing-function: steps(1, end);
}

img.glitch-repeat {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(13% 30% 82% 10%);
  --slice-2: inset(27% 10% 70% 0);
  --slice-3: inset(45% 10% 50% 35%);
  --slice-4: inset(59% 0 37% 20%);
  --slice-5: inset(70% 24% 24% 10%);
  clip-path: var(--slice-0);
  animation: 1.5s glitch infinite;
  animation-timing-function: steps(1, end);
}

@keyframes dive {
  0% {
    opacity: 1;
  }
  30% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1.3);
  }
  100% {
    opacity: 0;
    transform: scale(5);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes shock-in {
  0% {
    filter: invert(1) contrast(2);
  }

  50% {
    filter: invert(0) contrast(2);
  }

  100% {
    filter: contrast(1);
  }
}

@keyframes noise {
  0% {
    opacity: 0.2;
  }

  25% {
    opacity: 0.2;
  }

  26% {
    opacity: 1;
  }

  27% {
    opacity: 0.2;
  }

  75% {
    opacity: 0.2;
  }

  76% {
    opacity: 1;
  }

  77% {
    opacity: 0.2;
  }

  85% {
    opacity: 0.2;
  }

  86% {
    opacity: 1;
  }

  87% {
    opacity: 0.2;
  }

  100% {
    opacity: 0.2;
  }
}

@keyframes shimmer {
  0% {
    opacity: 1;
    filter: brightness(1);
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    filter: brightness(7);
  }
}

@keyframes glow {
  0% {
    filter: brightness(1.5);
  }

  50% {
    filter: brightness(0.5);
  }

  100% {
    filter: brightness(1.5);
  }
}

@keyframes glitch {
  0% {
    clip-path: var(--slice-0);
    transform: translate(0);
  }

  10% {
    clip-path: var(--slice-1);
    transform: translate(10px, 10px);
  }

  12% {
    clip-path: var(--slice-0);
    transform: translate(10px, 10px);
  }

  50% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
    filter: invert(1) contrast(2);
  }

  52% {
    clip-path: var(--slice-0);
    transform: translate(-5px, 0px);
    filter: invert(0) contrast(1);
  }

  60% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }

  62% {
    clip-path: var(--slice-0);
    transform: translate(5px, 0px);
  }

  80% {
    clip-path: var(--slice-4);
    transform: translate(20px, -10px);
  }

  82% {
    clip-path: var(--slice-0);
    transform: translate(20px, -10px);
  }

  90% {
    clip-path: var(--slice-5);
    transform: translate(-10px, 0px);
    filter: invert(1) contrast(2);
  }

  92% {
    clip-path: var(--slice-0);
    transform: translate(-10px, 0px);
    filter: invert(0) contrast(1);
  }

  100% {
    clip-path: var(--slice-0);
    transform: translate(0);
  }
}

input[type="text"] {
  min-width: 200px;
  height: 40px;
  font: 24px sans-serif;
  box-sizing: border-box;
  width: 60%;
  padding: 0.3em;
  transition: 0.3s;
  letter-spacing: 1px;
  color: #aaaaaa;
  border: 2px solid #1b2538;
  border-radius: 4px;
  background-color: var(--accent2);
  margin: 0 auto;
  display: block;
  text-align: center;
}

input[type="text"]:focus {
  border: 2px solid #da3c41;
  outline: none;
}

#your-name.fade-out {
  animation: fade-out 3s;
  animation-fill-mode: forwards;
}

/* From uiverse.io by @mrhyddenn */
.func-button {
  display: inline-flex;
  justify-content: center;
  margin: 10px 30px;
  min-width: 100px;
  padding: 10px 20px;
  border: none;
  color: #fff;
  border-radius: 7px;
  font-weight: 700;
  transition: 0.5s;
  transition-property: box-shadow;
}

.func-button {
  background: var(--bg-dark);
  box-shadow: 0 0 25px var(--accent1);
  user-select: none;
}

.func-button:hover {
  box-shadow: 0 0 5px rgb(0, 140, 255), 0 0 25px rgb(0, 140, 255),
    0 0 50px rgb(0, 140, 255), 0 0 100px rgb(0, 140, 255);
}

p {
  text-align: center;
  user-select: none;
}

span {
  display: inline-block;
}

#nazo {
  position: relative;
  width: 100%;
  height: 100%;
}

#nazo-main,
#nazo-sub,
#nazo-bg,
#main-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#nazo-bg {
  z-index: 4;
  background: var(--bg-dark-trans);
}

#nazo-main,
#main-content {
  z-index: 5;
}

#nazo-bg.del {
  animation: fade-out 1s;
  animation-fill-mode: forwards;
}

#nazo-sub {
  z-index: 10;
  background: var(--bg-dark-trans);
}

#nazo-pic-wrapper,
#log-pic-wrapper {
  display: block;
  position: relative;
  margin: 20px auto;
  aspect-ratio: 1;
  max-width: 70%;
  max-height: 70%;
}

#nazo-pic,
#log-pic {
  width: 100%;
  height: 100%;
}

#log-button {
  position: absolute;
  bottom: 0;
  right: 0;
  min-width: 100px;
  min-height: 100px;
  max-width: 15%;
  max-height: 15%;
  aspect-ratio: 1;
  z-index: 2000;
  background-image: url(../img/log.png);
  background-size: cover;
}

#log-button:hover {
  background-image: url("../img/log_hover.png");
}

#story {
  z-index: 100;
}

#message-window {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 25vh;
  margin: 10px 30px;
  padding: 30px;
  background: var(--bg-dark-trans);
  box-shadow: 0px 0px 5px 5px var(--bg-dark-trans);
  border-radius: 20px;
  user-select: none;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-name: logdisp;
  z-index: 100;
}

#log-window {
  position: absolute;
  top: 0;
  background: var(--bg-dark-trans);
  overflow-y: scroll;
  width: 90%;
  height: 95%;
  font-size: 80%;
  z-index: 200;
}

#log-main,
#log-sub {
  position: absolute;
  background: var(--bg-dark-trans);
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
}

#log-main {
  z-index: 300;
}

#log-sub {
  z-index: 400;
}

.del {
  display: none;
}

faechatter {
  display: inline;
  text-align: center;
  font-size: 150%;
  font-family: "Faechatter", "Shippori Mincho", serif;
  src: url("https://bad-assort.com/play/gothic/Faechatter-serif.woff");
}

translate {
  display: inline;
  text-align: center;
}

#message-window faechatter,
#message-window translate {
  display: block;
}

.first-blur {
  text-align: center;
  font-size: 150%;
  animation-name: firstblurAnime;
  animation-duration: 7s;
  animation-fill-mode: forwards;
}

@keyframes firstblurAnime {
  from {
    filter: blur(2em);
    opacity: 0;
  }

  30% {
    filter: blur(0);
    opacity: 0.7;
  }

  50% {
    filter: blur(0);
    opacity: 0.7;
  }

  to {
    filter: blur(2em);
    opacity: 0;
  }
}

.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

.last-blur {
  animation-name: lastblurAnime;
  animation-duration: 8s;
  animation-fill-mode: forwards;
}

@keyframes lastblurAnime {
  from {
    transform: scale(1);
    opacity: 0;
  }

  50% {
    filter: blur(0);
    opacity: 0.7;
  }

  to {
    filter: blur(2em);
    transform: scale(3);
    opacity: 0;
  }
}

.opaq {
  opacity: 0.3;
}

.deceased-anime {
  animation-name: deceasedAnime;
  animation-duration: 1s;
  outline: transparent;
  animation-fill-mode: forwards;
}

.deceased-anime::after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -6px 0 0);
  --slice-2: inset(50% -6px 30% 0);
  --slice-3: inset(10% -6px 85% 0);
  --slice-4: inset(40% -6px 43% 0);
  --slice-5: inset(80% -6px 5% 0);
  content: "NO";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  text-shadow: -3px -3px 0px #f8f005, 3px 3px 0px #00e6f6;
  clip-path: var(--slice-0);
}

.deceased-anime:hover::after {
  animation: 1s glitch-button;
  animation-timing-function: steps(2, end);
}

@keyframes glitch-button {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-20px, -10px);
  }

  10% {
    clip-path: var(--slice-3);
    transform: translate(10px, 10px);
  }

  20% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 10px);
  }

  30% {
    clip-path: var(--slice-3);
    transform: translate(0px, 5px);
  }

  40% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
  }

  50% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }

  60% {
    clip-path: var(--slice-4);
    transform: translate(5px, 10px);
  }

  70% {
    clip-path: var(--slice-2);
    transform: translate(-10px, 10px);
  }

  80% {
    clip-path: var(--slice-5);
    transform: translate(20px, -10px);
  }

  90% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 0px);
  }

  100% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }
}

@keyframes deceasedAnime {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes logdisp {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.flash {
  animation: flash 1s;
}

@keyframes flash {
  0% {
    background-color: rgb(0, 140, 255);
  }

  60% {
    background-color: var(--accent2);
  }
}

#ans5.flash,
.flash-g {
  animation: flash-green 1s;
}

@keyframes flash-green {
  0% {
    background-color: rgb(0, 255, 140);
  }

  60% {
    background-color: var(--accent2);
  }
}

.flash-y {
  animation: flash-yellow 1s;
}

@keyframes flash-yellow {
  0% {
    background-color: rgb(255, 255, 0);
  }

  60% {
    background-color: var(--accent2);
  }
}

.flash-b {
  animation: flash-black 1s;
}

@keyframes flash-black {
  0% {
    background-color: white;
  }

  60% {
    background-color: var(--accent2);
  }
}

.shake {
  animation: shake 1s;
}

@keyframes shake {
  0% {
    background-color: red;
    transform: translate(2px, 0px);
  }

  10% {
    transform: translate(-2px, 0px);
  }

  20% {
    transform: translate(2px, 0px);
  }

  30% {
    transform: translate(-2px, 0px);
  }

  40% {
    transform: translate(2px, 0px);
  }

  50% {
    transform: translate(-2px, 0px);
  }

  60% {
    background-color: var(--accent2);
    transform: translate(0px, 0px);
  }
}

div#ques1-wrapper {
  position: relative;
  max-width: 70%;
  max-height: 70%;
  aspect-ratio: 1;
  margin: auto;
  transform: rotate(45deg);
}

.ques1 {
  border: 2px solid var(--accent1);
  position: absolute;
  width: 20%;
  height: 20%;
}

.ques1 > p {
  transform: rotate(-45deg);
}

.ques1 > p:nth-child(2) {
  font-size: 150%;
}

div#ques11 {
  top: 15%;
  left: 40%;
}

div#ques12 {
  top: 40%;
  left: 65%;
}

div#ques13 {
  top: 65%;
  left: 40%;
}

div#ques14 {
  top: 40%;
  left: 15%;
}

div#ques15 {
  top: 15%;
  left: 65%;
}

div#ques16 {
  top: 65%;
  left: 65%;
}

div#ques17 {
  top: 65%;
  left: 15%;
}

div#ques18 {
  top: 15%;
  left: 15%;
}

div#hidden-key {
  position: absolute;
  z-index: 1000;
  width: 9%;
  height: 9%;
  top: 5%;
  left: 47%;
}

div.locked {
  background: var(--accent1);
}

div#ques2-wrapper {
  position: relative;
  max-width: 70%;
  max-height: 70%;
  aspect-ratio: 1;
  margin: auto;
}

.ques2 {
  position: absolute;
  width: 13%;
  height: 13%;
  top: 6%;
  box-sizing: border-box;
  border: 2px solid var(--accent1);
  background: var(--bg-light);
}

.ques2 > div,
.q2-tb > div,
.ques5 > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: none;
}

.ques2 > div > p,
.ques5 > div > p {
  font-size: 200%;
  color: var(--bg-dark);
}

div#ques21 {
  left: 13.5%;
}

div#ques22 {
  left: 28.5%;
}

div#ques23 {
  left: 43.5%;
}

div#ques24 {
  left: 58.5%;
}

div#ques25 {
  left: 73.5%;
}

div.q2-tb {
  position: absolute;
  width: 15%;
  height: 15%;
  border: 2px solid var(--accent1);
  box-sizing: border-box;
}

div.q2-tb > div > p {
  font-size: 200%;
}

div.q2-r1 {
  top: 20%;
}

div.q2-r2 {
  top: 35%;
}

div.q2-r3 {
  top: 50%;
  background: var(--accent2);
}

div.q2-r4 {
  top: 65%;
}

div.q2-r5 {
  top: 80%;
}

div.q2-c1 {
  left: 12.5%;
}

div.q2-c2 {
  left: 27.5%;
}

div.q2-c3 {
  left: 42.5%;
}

div.q2-c4 {
  left: 57.5%;
}

div.q2-c5 {
  left: 72.5%;
}

div#ques2-p-wrapper {
  position: absolute;
  bottom: 55%;
  left: 0;
  right: 0;
  z-index: 30;
}

div#ques2-yes {
  position: absolute;
  right: 60%;
  top: 70%;
  z-index: 30;
}

div#ques2-no {
  position: absolute;
  left: 60%;
  top: 70%;
  z-index: 30;
}

div#ques4-wrapper {
  position: relative;
  max-width: 70%;
  max-height: 70%;
  aspect-ratio: 1;
  margin: auto;
}

div.q4-tb {
  position: absolute;
  width: 10%;
  height: 10%;
  border: 1px solid var(--accent1);
  box-sizing: border-box;
}

div.q4-tb > div > p {
  font-size: 150%;
}

div.q4-r1 {
  top: 15%;
}

div.q4-r2 {
  top: 25%;
}

div.q4-r3 {
  top: 35%;
}

div.q4-r4 {
  top: 45%;
}

div.q4-r5 {
  top: 55%;
}

div.q4-r6 {
  top: 65%;
}

div.q4-r7 {
  top: 75%;
}

div.q4-c1 {
  left: 15%;
}

div.q4-c2 {
  left: 25%;
}

div.q4-c3 {
  left: 35%;
}

div.q4-c4 {
  left: 45%;
}

div.q4-c5 {
  left: 55%;
}

div.q4-c6 {
  left: 65%;
}

div.q4-c7 {
  left: 75%;
}

#ques4-14,
#ques4-22,
#ques4-33,
#ques4-35,
#ques4-37,
#ques4-42,
#ques4-46,
#ques4-51,
#ques4-53,
#ques4-55,
#ques4-66,
#ques4-74 {
  background: var(--accent1);
}

div#key4-tate,
div#key4-yoko {
  height: 30%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

#key4-tate > p:nth-child(2),
#key4-yoko > p:nth-child(2) {
  animation: dim 3s;
  animation-fill-mode: forwards;
  font-size: 150%;
}

img.dim {
  aspect-ratio: 1;
  max-width: 50%;
  max-height: 50%;
  display: block;
  margin: auto;
  animation: dim 3s;
  animation-fill-mode: forwards;
}

@keyframes dim {
  0% {
    filter: blur(20px);
    opacity: 0;
    transform: rotateZ(-2deg) scale(0.9);
  }
  50% {
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    filter: blur(20px);
    opacity: 0;
    transform: rotateZ(2deg) scale(1);
  }
}

div#ques5-wrapper {
  position: relative;
  max-width: 70%;
  max-height: 70%;
  aspect-ratio: 1;
  margin: auto;
}

div#paper-wrapper {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  bottom: 40%;
  display: flex;
  justify-content: center;
}

.ques5 {
  box-sizing: border-box;
  aspect-ratio: 26/48;
}

.ques5 img {
  max-width: 100%;
  max-height: 100%;
}

div#ques5-para-outer {
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: 80%;
  height: 15%;
}

div#ques5-para-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-around;
}

.para {
  font-size: 120%;
}

.green {
  background: #4fa470;
}

.yellow {
  background: #979a73;
}

.flex-wrapper-parent {
  width: 100%;
  height: 100%;
  position: relative;
}

.flex-wrapper {
  width: fit-content;
  height: fit-content;
  overflow: visible;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 600px) {
  html {
    font-size: 90%;
  }

  input[type="text"] {
    font: 16px sans-serif;
    height: 32px;
  }

  .func-button {
    padding: 6px 16px;
    border-radius: 15px;
    min-width: 90px;
  }

  .first-blur {
    font-size: 120%;
  }

  #message-window {
    margin: 10px 10px;
    padding: 10px;
    font-size: 90%;
  }

  #log-button {
    min-width: 70px;
    min-height: 70px;
  }

  div#ques1-wrapper {
    max-width: 100%;
    max-height: 100%;
    margin: 50px auto auto auto;
  }

  .ques1 > p {
    font-size: 80%;
    margin: 0.4rem auto;
  }

  #nazo-pic-wrapper,
  #log-pic-wrapper {
    margin: 40px auto;
    max-width: 98%;
    max-height: 98%;
  }

  .ques1 > p:nth-child(2) {
    font-size: 120%;
  }

  div#ques2-wrapper {
    margin: 40px auto;
    max-width: 100%;
    max-height: 100%;
  }

  div.q2-tb {
    border: 1px solid var(--accent1);
  }

  div#ques2-yes {
    right: 50%;
  }

  div#ques2-no {
    left: 50%;
  }

  div#ques4-wrapper {
    max-width: 100%;
    max-height: 100%;
    margin: 40px auto;
  }

  #log-window {
    padding: 10px;
  }

  div#ques5-wrapper {
    max-width: 100%;
    max-height: 100%;
    margin: 40px auto;
  }

  div#ques5-para-outer {
    left: 5%;
    width: 90%;
  }

  faechatter#true-ques {
    font-size: 250%;
  }
}
