.my-spooky-heading {
  font-family: "Nosifer", cursive;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, #3a1c0f, #a45c19);
}

h1 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: red;
  text-shadow: 3px 3px 5px #000, -3px -3px -5px #ff000f;
  letter-spacing: 5px;
  animation: flicker 1.5s infinite;
  font-size: 40px;
  text-align: center;
  margin-top: 100px;
}
@keyframes flicker {
  0%,
  19%,
  21%,
  50%,
  60%,
  100% {
    opacity: 1;
  }
  20%,
  52%,
  59% {
    opacity: 0.4;
  }
}

.app {
  background: #d3af9f;
  width: 90%;
  max-width: 600px;
  margin: 100px auto 0;
  border-radius: 10px;
  padding: 30px;
  background-image: url("Ween.png");
  background-size: cover;
}

.app h1 {
  font-size: 25px;
  color: #731539;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
  font-family: "Nosifer";
}

.quiz {
  padding: 20px 0;
}

.quiz h2 {
  font-size: 18px;
  color: #241b1b;
  font-weight: 720;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.btn {
  background: rgb(152, 33, 25);
  color: rgb(194, 197, 203);
  font-weight: 500;
  width: 100%;
  border: 1px solid gray;
  padding: 10px;
  margin: 10px 0;
  text-align: left;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.btn:hover:not([disabled]) {
  background: rgb(224, 128, 32);
  color: rgb(66, 7, 94);
}
.btn:disabled {
  cursor: no-drop;
}
#next-btn {
  background: #c97413;
  color: #fff;
  font-weight: 500;
  width: 150px;
  border: 0;
  padding: 10px;
  margin: 20px auto 0;
  border-radius: 4px;
  cursor: pointer;
  display: none;
}

.correct {
  background: rgb(86, 213, 154);
}

.incorrect {
  background: rgb(126, 22, 22);
}

.dot {
  width: 35px;
  height: 25px;
  position: absolute;
  background: url(http://www.clipartqueen.com/image-files/red-lobed-fall-clipart-leaf.png);
  background-size: 100% 100%;
}

#container {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  pointer-events: none;
  z-index: 999;
}

#logo {
  display: none;
}

#DiacoDesignLink,
#pens {
  color: fff;
}
