html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", sans-serif;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 150px;
  gap: 10px;
}
header h1 {
  margin: 0;
  font-family: "Italiana", serif;
  font-size: 50px;
}
header p {
  margin: 0;
}

a {
  color: unset;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hidden {
  display: none !important;
}

.book {
  position: relative;
  overflow: auto;
  width: 80vw;
  max-width: 600px;
}
.book .content {
  padding: 15px;
  overflow: auto;
}
.book .content #title {
  margin-top: 0;
}
.book .content #rules {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 10px;
  list-style-type: none;
}
.book .content #rules li {
  background-color: #fcdea8;
  padding: 2px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px black;
}
.book .content .video {
  display: flex;
  justify-content: center;
  position: relative;
}
.book .content .video video {
  cursor: pointer;
  width: 100%;
  border-radius: 10px;
  box-shadow: 2px 2px 5px RGBA(0, 0, 0, 0.2);
}

.controls {
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.controls p {
  margin: 0;
}
.controls button {
  background: none;
  border: none;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
  font-family: unset;
  color: unset;
}

footer {
  margin: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
footer p {
  margin: 0;
}
footer .line {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
footer a {
  width: 40px;
  height: 40px;
}
footer img {
  width: 40px;
  border-radius: 50%;
}

.start-quiz, input[type=submit], #download, .gen-cert {
  background-color: #fcdea8;
  border: none;
  font-family: unset;
  color: unset;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 2px 2px 2px RGBA(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.quiz .options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz input[type=submit] {
  width: 100px;
  margin-top: 10px;
}

.score {
  padding-bottom: 20px;
}
.score p {
  margin: 0;
}
.score input {
  border: none;
  outline: none;
  font-family: unset;
  color: unset;
  background-color: RGBA(0, 0, 0, 0.1);
  padding: 5px;
  border-radius: 4px;
  box-shadow: 2px 2px 2px RGBA(0, 0, 0, 0.5);
}
.score .label {
  margin-top: 20px;
}
.score canvas {
  width: 100%;
  margin-bottom: 30px;
}
.score #download {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */