@import url('https://fonts.googleapis.com/css?family=Fira+Sans+Condensed&display=swap');

body {
    font-family: 'Fira Sans Condensed', sans-serif;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(322deg, rgba(80,80,80,1) 0%, rgba(0,0,0,1) 35%, rgba(0,0,0,1) 100%);
    overflow-x: hidden;
    user-select: none;
}
span {
  text-transform: capitalize;
}
hr {
    margin: 12px 0;
    width: 100%;
    height: 1px;
    background: #fff;
}
.container {
  display: flex;
  width:50%;
  margin: 0 25%;
  position: relative;
}
.title {
  text-align: center;
  font-family: 'Fira Sans Condensed', sans-serif;
  padding: 20px 0;
  position: relative;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 99;
  width: 50%;
  margin-right: 25%;
  margin-left: 25%;
}

.title h1 {
  text-align: center;
  position: relative;
  left: 0;
  right: 0;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 45px;
  color: #fff;
  margin: 0;
  z-index: 99;
  width: 100%;
}

.title h3 {
    text-align: center;
  color: #fff;
  font-size: 20px;
  font-family: 'Fira Sans Condensed', sans-serif;
  margin: 0;
  z-index: 99;
}
.btn {
    background-color: transparent;
    border-radius: 12px;
	width: 300px;
	height: 150px;
	display: inline;
	margin: 5px;
	text-align: center;
    font-family: 'Fira Sans Condensed', sans-serif;
	cursor: pointer;
	border: none;
    outline: none;
}

.btn:hover {
  border: none;
  outline: none;
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*----Quiz Questions----*/
#quiz_area {
	visibility: hidden;
	width: 650px;
	height: 450px;
	position: absolute;
	margin: auto;
	top: 15%;
	left: 20%;
}
/* No move */
.q-wrapper {
  background-color: #FFFFFF;
  border-radius: 20px;
  border: 3px solid #0f0;
  width: 350px;
  position: relative;
  left: 30%;
  text-align: center;
}

input {
	cursor: pointer;
}

.question {
  display: inline-block;
}

#num {
	padding: 5px;
	font-size: 45px;
  font-family: 'Fira Sans Condensed', sans-serif;
}

#question {
	margin: 10px;
	text-align: center;
	font-size: 20px;
}

#choices {
  margin: 5px;
	padding-left: 185px;
	font-size: 18px;
}

.answer {
  height: 50px;
  width: 350px;
  border-radius: 12px;
  background-color: #fff;
  color: #000;
  opacity: .5;
}
.answer:hover {
  opacity: .3;
  background-color: #fff;
  color: #000;
}
.answer:active, .answer.active {
  background-color: #ff3200;
  box-shadow: 0 0 12px #fff;
  border: 3px solid #fff;
  color: #fff;
  opacity: 1;
}

.control {
  height: 200px;
  width: 400px;
  position: relative;
  top: 40%;
  left: 25%;
	background-color: #DDDDDD;
	color: #000;
	margin: 5px;
	border: none;
  display: inline-block;
}
.control {
  background-color: #000;
	color: #fff;
}
#results {
  font-family: 'Fira Sans Condensed', sans-serif;
	visibility: hidden;
	text-align: center;
	background-color: #FFFFFF;
	border-radius: 3px;
	width: 550px;
	height: 250px;
	position: absolute;
	top: 25%;
	left: 30%;
	border-radius: 12px;
}

#message {
  position: relative;
  top: 10%;
	text-align: center;
	vertical-align: middle;
  font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 40px;
	font-weight: bold;
}

#reset {
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  position: relative;
  top: 15%;
  left: 35%;
}
#reset:hover {
  border-radius: 8px;
  background-color: #f00;
  position: relative;
  top: 15%;
  left: 35%;
}





.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes rubberBand {
  0% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  30% {
  -webkit-transform: scale3d(1.25, 0.75, 1);
  transform: scale3d(1.25, 0.75, 1);
  }
  40% {
  -webkit-transform: scale3d(0.75, 1.25, 1);
  transform: scale3d(0.75, 1.25, 1);
  }
  50% {
  -webkit-transform: scale3d(1.15, 0.85, 1);
  transform: scale3d(1.15, 0.85, 1);
  }
  65% {
  -webkit-transform: scale3d(.95, 1.05, 1);
  transform: scale3d(.95, 1.05, 1);
  }
  75% {
  -webkit-transform: scale3d(1.05, .95, 1);
  transform: scale3d(1.05, .95, 1);
  }
  100% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  }
  @keyframes rubberBand {
  0% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  30% {
  -webkit-transform: scale3d(1.25, 0.75, 1);
  transform: scale3d(1.25, 0.75, 1);
  }
  40% {
  -webkit-transform: scale3d(0.75, 1.25, 1);
  transform: scale3d(0.75, 1.25, 1);
  }
  50% {
  -webkit-transform: scale3d(1.15, 0.85, 1);
  transform: scale3d(1.15, 0.85, 1);
  }
  65% {
  -webkit-transform: scale3d(.95, 1.05, 1);
  transform: scale3d(.95, 1.05, 1);
  }
  75% {
  -webkit-transform: scale3d(1.05, .95, 1);
  transform: scale3d(1.05, .95, 1);
  }
  100% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  }
  




.grow {
  transition: all 0.2s ease-in-out;
}
.grow:hover {
  transform: scale(1.1);
}



#more img { 
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 15;
    cursor: pointer;
}
#more:hover { 
    opacity: .5;
    box-shadow: 0 0 12px #ff3200;
}
.creditos:before {
    content: "All Rights Reserved © 2026 www.kurozi.com";
    font-size: 16px;
    font-family: 'Fira Sans Condensed', sans-serif;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  position: fixed;
  color: #fff;
  z-index: 9;
  left: 82%;
  top: 50%;
  text-align: center;
  font-weight: 500;
  opacity: 1;
  user-select: none;
  white-space: nowrap;
}







.Zebra_Tooltip {
    position: absolute;
    z-index: 99;
    background: transparent;
    font-family: 'Fira Sans Condensed', sans-serif;
}

.Zebra_Tooltip .Zebra_Tooltip_Message {
    position: relative;
    top: -20px;
    padding: 40px;
    font-size: 20px;
    text-align: center;
    font-weight: normal;
    line-height: inherit;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: 2px 2px 6px rgba(0,0,0,1);
    -moz-box-shadow: 2px 2px 6px rgba(0,0,0,1);
    box-shadow: 2px 2px 6px rgba(0,0,0,1);
    *margin-right: 0;
    _width:expression(document.body.clientWidth > 350 ? '350px': 'auto'); /* max-width for IE6 */
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow { position: absolute; height: 10px; width: 20px; overflow: hidden;}

.Zebra_Tooltip .Zebra_Tooltip_Arrow_Bottom  { bottom: 20px; }
.Zebra_Tooltip .Zebra_Tooltip_Arrow_Top     { top: 0; }

.Zebra_Tooltip .Zebra_Tooltip_Arrow div {
    position: absolute;
    border-style: solid;
    border-width: 10px;
    height: 0;
    width: 0;
    left: 0;
    _border-left-color: pink;
    _border-right-color: pink;
    _filter: chroma(color=pink);
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow_Bottom div  {
    top: 0;
    _border-bottom-color: pink;
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow_Top div     {
    bottom: 0;
    _border-top-color: pink;
}

.Zebra_Tooltip .Zebra_Tooltip_Close {
    text-decoration: none;
    color: #FFF;
    position: absolute;
    right: 8px;
    top: 1px;
    font-size: inherit;
    font-weight: bold;
}

.Zebra_Tooltip .Zebra_Tooltip_Close:hover {
    color: #C40000;
}



a {
    text-decoration: none;
    color: #fff;
    font-size: inherit;
    font-weight: bold;
}
a:hover {
    text-decoration: none;
    color: #668419;
    font-size: inherit;
    font-weight: bold;
}