@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #fff;
}
.title {
  color: rgb(255, 33, 33);
  margin: 25px 0;
  font-size: 28px;
}
.description {
  line-height: 20px;
  font-weight: 600;
}
.description:last-child {
  margin-top: 20px;
}
.welcome_form input,
.welcome_form button {
  display: block;
  width: 100%;
}
.welcome_form input {
  margin-bottom: 15px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  font-size: 30px;
  text-align: center;
  color: #fff;
  text-align: center;
}
.welcome_form button {
  font-size: 22px;
  padding: 20px 0;
  border: none;
  background-color: #fff;
  color: #f47100;
  border-radius: 100px;
  transition: 0.4s all;
}
.welcome_form button:hover {
  transform: translatey(-5px);
  cursor: pointer;
}

.welcome_form input:focus,
.welcome_form button:focus {
  outline: none;
}

#myheading h1 {
  font-size: 64px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Luckiest Guy";
  color: #c62828;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0px -4px 0 #212121, 0px -4px 0 #212121, 0px 4px 0 #212121,
    0px 4px 0 #212121, -4px 0px 0 #212121, 4px 0px 0 #212121, -4px 0px 0 #212121,
    4px 0px 0 #212121, -4px -4px 0 #212121, 4px -4px 0 #212121,
    -4px 4px 0 #212121, 4px 4px 0 #212121, -4px 12px 0 #212121,
    0px 12px 0 #212121, 4px 12px 0 #212121, 0 13px 1px rgba(0, 0, 0, 0.1),
    0 0 4px rgba(0, 0, 0, 0.1), 0 4px 2px rgba(0, 0, 0, 0.3),
    0 8px 4px rgba(0, 0, 0, 0.2), 0 12px 12px rgba(0, 0, 0, 0.25),
    0 16px 16px rgba(0, 0, 0, 0.2), 0 24px 24px rgba(0, 0, 0, 0.15);
}

.quiz {
  margin-top: 15px;

  margin-bottom: 50px;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
  max-width: 800px;
  width: 100%;
  min-height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.quiz_body {

  padding: 10px;
    padding-top: 40px;
}

 //background-image: url(../images/background.png);

.quiz_body_start {
  padding: 50px;
}
.quiz_body_start button {
  margin-top: 20px;
}
.option_group {
  list-style-type: none;
  margin: 20px 0;
  text-align: left;
  cursor: pointer;
}
.option {
  background-color: rgb(33, 182, 174);
  color: white;
  padding: 5px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid transparent;
}

.option-value {
  display: none;
}

.showing {
  display: inline-block;
}

.btn_next {
  cursor: pointer;
  margin-right: 10px;
  display: flex;
}

.btn_next,
#start-again {
  background: rgb(255, 205, 99);
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  padding: 15px 40px;
  border: none;
  transition: 0.2s all;
  outline: none;
}

.disabled {
  cursor: default;
  background: rgb(239, 239, 239);
}

.btn_next:active,
#start-again:active {
  animation: scaling 1s;
}

.active {
  background-color: #607d8b;
  color: white!important;
  transition: 0.2s;
  transform: scale(1.01);
  box-shadow: 0 0 5px #263238;
}
@keyframes scaling {
  0% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

.award_icon {
  font-size: 300px;
  color: white;
}
.user_name,
.user_points,
.user_time {
  color: white;
  text-align: center;
  margin-top: 15px;
}
#questions > h2 {
  font-size: 30px;
  color: #37474f;
  text-align: center;
}

#questions > h3 {
    font-size: 20px;
  color: #37474f;
  text-align: center;
}

.question-img {
  width: 100px;
  height: 100px;
  margin: 15px auto 5px auto;
  overflow: hidden;
}
.question-img > img {
  width: 100%;
}
.bottom {
  display: flex;
  align-items: center;
}
.result-text {
  margin: 0 20px;
  color: #263238;

  width: 100%;
}

.result-text > span {
  display: inline-block;
}


#result,
#final-result,
#point {
  margin-left: 10px;
  margin-right: 10px;
}
#point-text {
  margin-left: auto;
  display: flex;
  position: absolute;
  opacity: 0;
}
.end-box {
  max-width: 600px;
  width: 90%;
  padding: 10px;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  justify-content: left;
 
}
.result-end {
  padding: 20px 0px;
  color: #263238;
}
#start-again {
  cursor: pointer;
  width: 160px;
  padding: 15px;
}
.otter {
  width: 100%;
  margin: 0 auto;
}
.otter-box {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
@media (max-height: 545px) {
  .quiz {
    transform: translate(0, 0);
    top: 0;
    left: 0;
    margin: 50px 0;
  }
  .bottom {
    flex-direction: column;
  }
}
