/* Scss Document */
body {
  background-color: #efdec1;
  font-size: 16px;
  font-family: Noto sans, sans-serif; }

.container {
  width: 400px;
  margin: 8px auto;
  background: #fff;
  border-radius: 4px;
  padding: 16px;
  position: relative; }

.question {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700; }

.choices {
  list-style: none;
  padding: 0;
  margin-bottom: 16px; }
  .choices .answer {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer; }
    .choices .answer:hover {
      background: #f8f8f8;
      box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2); }

.correct {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
  font-weight: 700; }
  .correct::after {
    content: '...correct!'; }

.wrong {
  background: #f8d8da;
  border-color: #f5c6cb;
  color: #721c24;
  font-weight: 700; }
  .wrong::after {
    content: '...wrong!'; }

.btn, .replay {
  background: #3498db;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 0 #17527A;
  text-decoration: none; }

.replay {
  display: block; }

.disabled {
  background: #ccc;
  box-shadow: 0 4px 0 #aaa;
  opacity: .7; }

.result {
  position: absolute;
  width: 300px;
  background: rgba(254, 254, 254, 0.8);
  z-index: 1;
  border-radius: 10px;
  text-align: center;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  top: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.4s; }
  .result p {
    font-size: 24px; }

.hidden {
  transform: translateY(-500px); }
