@font-face {
  font-family: "tamanegi";
  src: url("/assets/fonts/tamanegi.ttf");
}

body {
  text-align: center;
  margin: 0 auto;
}

ul {
  list-style: none;
  display: inline-block;
  text-align: left;
}

.exams li {
  width: 700px;
}

canvas {
  display: none;
}

.point {
  font-size: 1.2rem;
  color: #ff0000;
  margin-bottom: 10px;
}

.question-image img {
  width: 40%;
}

.options {
  display: inline-block;
  text-align: left;
}
.options label {
  display: flex;
  align-items: center;
  margin-bottom: -15px;
}
.options input[type="radio"] {
  margin-right: 8px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
}
.button:nth-of-type(2) {
  margin-left: 100px;
}

.passed {
  font-size: 2.5rem;
  margin-top: 15px;
  margin-bottom: 15px;
}
.passed span {
  color: rgb(255, 98, 0);
  border: rgb(255, 98, 0) solid 3px;
  padding: 5px 50px;
}

.fail {
  font-size: 2.5rem;
  margin-top: 15px;
  margin-bottom: 15px;
}
.fail span {
  color: #0400ff;
  border: #0400ff solid 3px;
  padding: 5px 50px;
}

#name {
  font-family: "kt";
  font-size: 1.3em;
  margin-top: 10px;
  width: 200px;
  padding: 5px 15px;
  border-radius: 5px;
  border: #0088ff 3px solid;
  outline: 0;
}

#card-img img {
  width: 60%;
}

.xButton {
  background-color: #000;
  color: #fff;
  padding: 7px 10px;
  border-radius: 30px;
}
.xButton::before {
  content: url("/assets/img/x.svg");
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: relative;
  top: 8px;
  filter: invert(1);
}

@media screen and (max-width: 480px) {
  .exams li {
    width: 300px;
  }
}
