* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: #fff;
}
#game {
  width: 100%;
  height: 100vh;
  background-color: rgb(19, 18, 18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#qpic {
  width: 650px;
  height: 100px;
  color: red;
  padding: 10px;
  /* margin-bottom: 20px; */
  background-color: rgb(95, 182, 204);
  margin-bottom: 2em;
  border-radius: 10px;
}
canvas {
  color: red;
  text-align: center;
  line-height: 64px;
  padding: 10px;
}
p.score {
  border: 1px solid rgb(227, 250, 126);
  padding: 10px;
  font-size: 1.5em;
  margin-bottom: 1em;
  border-radius: 10px;
}
.btn-container {
  display: flex;
}
.qbtn {
  font-size: 18pt;
  margin: 1em;
  border-radius: 50%;
  padding: 40px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: rgb(227, 250, 126);
  transition: all 0.2s ease-in-out;
}
.qbtn:hover {
  background-color: green;
}
#qp {
  width: 80%;
}
#tt {
  display: inline;
  margin: 1em;
  font-size: 2em;
}
