@charset "UTF-8";

/* 共通設定 */
html {
  font-family: 'Tektur', cursive;
  background-color: black;
  color: white;
  text-align: center;
}

a {
  text-decoration: none;
  color: lavender;
}

#crazy_quiz {
}

.q_img {
  height: 250px;
}

.q_txt {
  font-size: 2rem;
}

button {
  margin: 0.5rem;
  width: 400px;
  height: 50px;
}

#next button {
  background-color: rgb(173, 104, 237);
}

.txt_big {
  font-size: 2rem;
}

.txt_mddle {
  font-size: 1.3rem;
}

.btn_to_home a img {
  margin:2rem;
  width: 300px;
}

footer {
  position: absolute;
  /*←絶対位置*/
  bottom: 0;
  /*下に固定*/
  left: 50%;
  transform: translateX(-50%);
}