/* ------------------------------------------------------------ container setup ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* the body affects all elements inside of it */
body {
	display: flex;
	justify-content: center;
	align-items: center;
	background-repeat:no-repeat;
	font-family: "Poppins", "Open Sans", Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align: center;
	overflow: hidden;
	background: black;
	background-size:cover;
	background-image: url("/trivia/assets/gradient-trivia/img/Background.jpg");
	background-position: top;
}

 body.game-over-win  {
	background-size:cover;
	background-image: url("/trivia/assets/gradient-trivia/img/Background-final.jpg");
	background-position: top;
}

.browser-device-mobile body {
	background-image: url("/trivia/assets/gradient-trivia/img/Background-mobile.jpg");

}

.browser-device-mobile body.game-over-win  {
	background-size:cover;
	background-image: url("/trivia/assets/gradient-trivia/img/Background-final.jpg");
	background-position: top;
}

.underline {
	text-decoration: underline;
}

/* contains all game elements */
#game-container {
	position: relative;
    text-align: center;
    color: #fff;
}

canvas {
    margin: 0 auto;
    padding: 0;
}

#title, .title {
    position: relative;
    background-image: url("/trivia/assets/gradient-trivia/img/title.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1000;
	height: 160px;
}



.browser-device-mobile #title, .title {
	
    margin-top: 40px;
}



.screen-board-container #title, .title {
    display: none;
}

.game-finished.screen-board-container .title {
    display: block;
	margin-top:70px;
}


#iziigame-link a {
    color: #fff;
    text-decoration: none;
    background-image: url("/trivia/assets/gradient-trivia/img/iziigame-logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    height: 41px;
    width: 139px;
    display: block;
}


.browser-device-mobile #iziigame-link a {
	
	width:68px;
	height:20px;

}



/* sound and restart */
#toggle-sound svg,
#restart-button svg {
	fill: white;
}

.browser-device-mobile #toggle-sound {
	width:30px;	

}

.browser-device-mobile #restart-button {
	width:30px;	

}

#intro-description {
  font-size: 3.5vh;
  line-height: 1.9em;
  
  padding: 0px 0.5em;
  color: white;
  margin: 6vh auto 4vh auto;
  width:60%
  
}

b{
    font-size: 2.3em;
    display: block;
    font-weight: 800;
	color:#fbb03b;
	
}

 .browser-device-mobile #intro-description {
	font-size: 2em;
    line-height: 1.3em;
    width: 85%;
}




#intro-button,
#play-button,
#answer-button,
#continue-button,
#claim-prize-btn, 
#take-me-there, 
#info-required-button, 
#try-again-btn, 
#go-back-to-board,
#post-game-button, #next-button {
	cursor: pointer;
    background-color: #37025a;
    color: white;
    margin: 0 auto;
    margin-top: 30px;
    width: max-content;
    padding: 1vh 2vh;
    
    font-size: 2vh;
    font-weight: 500;
    
	border-radius: 10px;
}

#post-game-button,
#play-button,
#go-back-to-board {
	animation-name: pulsingGrowing;
	animation-delay: 6s;
	animation-duration: 1.5s;
	animation-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.850);
	animation-iteration-count: infinite;
}


@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1600px) 
  and (-webkit-min-device-pixel-ratio: 1) { 
	#intro-button,
	#play-button,
	#answer-button,
	#continue-button,
	#claim-prize-btn, #take-me-there, #info-required-button, #try-again-btn {
		font-size:20px;
	}
  }
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
#intro-button,
	#play-button,
	#answer-button,
	#continue-button,
	#claim-prize-btn, #take-me-there, #info-required-button, #try-again-btn {
		font-size:20px;
	}
}

#answer-button,
#continue-button,
#claim-prize-btn {
	padding: 10px 35px;
	font-size: 30px;
	margin-top: 25px;
}

.browser-device-mobile 
#play-button {
	font-size:20px;
	border: none;
	margin-top:20px;
	padding: 10px 30px;

}

.browser-device-mobile 
#continue-button {
	font-size:20px;
	border: none;
	margin-top:20px;
	padding: 15px 30px;

}

.browser-device-mobile 
#take-me-there {
	font-size:20px;
	border: none;
	width:max-content;
	

}


@media screen   
and (min-width: 1030px)   
and (max-width: 1366px)   {
#answer-button,
#continue-button,
#claim-prize-btn {
	padding: 15px 35px;
	font-size: 20px;
	margin-top: 40px;
	text-transform:none;
}
	}

@media only screen   
and (min-device-width : 768px)   
and (max-device-width : 1025px) {
#answer-button,
#continue-button,
#claim-prize-btn {
	padding: 15px 35px;
	font-size: 20px;
	margin-top: 40px;
	text-transform:none;
}
	}



	
	
#intro-container,
#rules-container,
#board-container {
	color: #333;
	line-height: 40px;
	font-size:32px;
}

.browser-device-mobile #intro-container,
#rules-container,
#board-container {
	color: #333;
	line-height: 20px;
	font-size:15px;
}



.browser-device-mobile #intro-container {
	line-height:20px;
	font-size:15px;
	width:100%;
	height:50%

}



#category-container {
    display: flex;
    justify-content: center;
    background-color: #37025a;
    padding: 20px;
	
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    
    box-shadow: 0px 3px 6px #202020fa;
    
}

.browser-device-mobile #category-container {
	display:none;
}

.photo-zoom-button {
	display:none;
}

.category-type.current-category {
	opacity: 1;

}
.category-type {
    margin-left: 20px;
    font-weight: 600;
   
    background-color: #fca551;
    color: white;
    padding: 10px 50px;
    font-size: 25px;
   
	opacity: .5;
}


#question-section, #outer-photo-section {
    background: rgba(255, 255, 255, 0.4);   
    box-shadow: 0px 2px 6px #000000;
    
}



#question-info-container {
	display: flex;
    justify-content: space-evenly;
}

/* the prize container */
#prize-container {
	
    width: 80%;
    font-size:45px;
	
    font-weight: 500;
    z-index: 10;
    animation-name: showGame;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 2s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	margin: 0 auto;
	
}

.no-prize-header {
    
    font-size: 6vh;
    font-weight: bold;
    color: #fbb03b;
}

#info-required-header {
color: #333;
	line-height: 35px;
	font-size:25px;
	margin-top:10px;
}

@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1600px) 
  and (-webkit-min-device-pixel-ratio: 1) { 
	  #info-required-header {
color: #333;
	line-height: 35px;
	font-size:25px;
	margin-top:10px;
}
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) { 
	  #info-required-header {
color: #333;
	line-height: 30px;
	font-size:20px;
	margin-top:10px;
}
}
.browser-device-mobile #info-required-header {
color: #333;
	line-height: 30px;
	font-size:20px;
}
.browser-device-mobile  #prize-info-success-text {
	
	line-height: 30px;
	font-size:20px;
}

#prize-info-success-text {
	color: #333;
	line-height: 42px;
	font-size:32px;
}




@media only screen   
and (min-device-width : 768px)   
and (max-device-width : 1024px) {
#prize-container {
    width:90%;
	font-size:25px;
	}
	}

.browser-device-mobile #prize-container {
	font-size: 2.5em;
	margin-top: -20vh;
}


.prize-header {
    color: white;
    line-height: 1.3em;
	display:none;
	
}


.prize-name {
	font-size: 9vh;
    display: block;
    font-weight: 800;
    color: #fbb03b;
    
}

.browser-device-mobile .prize-name {
	font-size: 1em;
}


.no-prize-name {
	color:white;
	font-size:5vh;
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
	  .no-prize-name {
		  font-size:20px;
		  line-height:30px;
	  }
	   }

.prize-name-head {
	color:white;
	font-size:1em;
	line-height:42px;
}

.address-already-exists .prize-header, .address-already-exists .prize-name, .address-already-exists .prize-points-description {
    display: none;
}

.address-already-exists #address-submitted {
    display: block;
    color: #333;
    font-size: 35px;
    margin-top: 210px;
}

.prize-name-value {
	font-weight: bold;
    
    margin: 0;
    padding: 0;
    line-height: 1;
    
    display: inline-block;
}
.prize-points {
    font-weight: bold;
    font-size: 5.2em;
    margin: 0;
    padding: 0;
	line-height: 1;
	color: #fff;
}
.prize-name-points {
    font-weight: bold;
	font-size: 1.8em;
	color: #fff;
}


.prize-points-description{
	color: white;
	font-size: 6vh;
	
}

.browser-device-mobile  .prize-points-description{
    font-size: 20px;
    margin-top: 0.5em;
}


/* Post-game screen */

.game-finished.screen-post-game-container #prize-container {
  display: none !important;
}

.standard-small-font {
  width: 80%;
  margin: 0 auto;
  font-size: 3vh;
  text-shadow: 0px 0px 2px black, 2px 2px 0px black;
}

.standard-large-font {
  font-size: 4em;
  display: block;
  font-weight: bold;
  line-height: 1em;
  margin: 7vh 0vh 1vh 0;
  text-shadow: 0px 0px 5px black;
}

@media screen   
and (min-width: 1030px)   
and (max-width: 1366px)   {
.prize-name-head,
	.prize-name{
    font-size:30px;
}
	}

@media only screen   
and (min-device-width : 768px)   
and (max-device-width : 1024px) {

	.prize-name-head,
	.prize-points-description{
    font-size:25px;
	}
	}



@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1600px) 
  and (-webkit-min-device-pixel-ratio: 1) { 
	  .prize-name-head,
	.prize-points-description {

	line-height: 35px;
	font-size:25px;
	
}
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
  .prize-name-head,
	.prize-points-description {

	line-height: 30px;
	font-size:20px;
	
}
}

/* the question container */
#question-container {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 6;
	top: 0px;
    left: 0px;
}

.no-prize-description {
	color:#333;
	font-size:30px;
	line-height: 42px;
	
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
	  .no-prize-description {
		  font-size:20px;
		  line-height:30px;
	  }
	   }


.browser-device-mobile  .no-prize-description{
    font-size: 20px;
    color: #333;
    line-height: 30px;
}
/* ------------------------------------------------ */









/* ---------------------------------- shared item info ------------------------------------ */

/* container for board elements */
.container{
	position: absolute;
	display: inline-block;

	z-index: 0;
}

/* answer containers */
.answer-block {
   text-align: left;
    display: block;
    float: left;
    width: 100%;
    margin: 0% 0% 2% 0;
    color: white;
    
	background: #fca551;
    padding: 1%;
    
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
}

.answer-clicked {
    background-color: #37025a;
}

.answer-block:hover .styling-obj{
	animation: hoverState 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.answer-block.hide {
	display: none;
}

.answer-clicked.incorrect {
    background-color: red;
}

.answer-clicked.correct {
    background-color: green;
}

/* answer div inside the answer container */
.answer {
	display: inline-block;
    vertical-align: top;
    cursor: pointer;
    font-size: 24px;
    margin: 1% auto 1.2% 3%;
    line-height: 1.1em;
}

.browser-device-mobile .answer {
	
    font-size: 18px;
	line-height: 1em;
   
}

@media screen   
and (min-width: 1030px)   
and (max-width: 1366px)    {
.answer {
	display: inline-block;
    vertical-align: top;
    cursor: pointer;
    font-size: 20px;
    margin: 1% auto 1.2% 3%;
    line-height: 1em;
}
	}

.answer-block.correct .answer,
.answer-block.incorrect .answer {
    width: 80%;
}
/* extra styling object in the answer container */
.styling-obj {
	display: inline-block;
	width: 40px;
	height: 40px;
	vertical-align: top;
	position: relative;
	border-width: 1px;
	border-radius: 50%;
	z-index: 7;
	background-image: url("/Radio.png");
	margin: 0% auto auto 1%;
	display: none;
}

.correct .styling-obj, .incorrect .styling-obj {
    display: inline-block;
	animation: answerIconReveal;
	animation-delay: 0;
	animation-duration: 2s;
}

/* ------------------------------------------------------------ */









/* --------------------------------------- specific item info ------------------------------ */
/* question container */
#question-header {
	display: block;
	margin: 3% auto;
	font-size: 2.5em;
	color: #353a45;
	display: none;
}
#question-text {
	display: block;
    width: 100%;
    margin: 3% auto;
    font-size: 25px;
    color: white;
    font-weight:500;
    text-align: left;
    line-height: 1.3em;
}

@media screen   
and (min-width: 1030px)   
and (max-width: 1366px)    {
	#question-text {
    font-size: 20px;
}
	}

.browser-device-mobile #question-text {

    font-size: 18px;
    line-height: 25px;
}
/* the answer submit button */

#answer-button {
    position: relative;
    display: flow-root;
    font-size: 20px;
	
	
}

#continue-button {
	width: 100%;
    position: relative;
    display: flow-root;
    font-size: 20px;
	margin-top: .5em;
	text-transform: uppercase;
}

#claim-prize-btn {
    width: max-content;
    position: relative;
    display: flow-root;
    font-size: 30px;
	padding:20px 40px;
}

/* ------------- event listeners ------------- */
/* general displaying */
.hide {
	display: none;
}
.show {
	display: block;
	animation-name: becomeVisible;
	animation-duration: 2s;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* click watchers */
/* for board elements that are clicked */
.clicked {
	pointer-events: none;
}
/* for when the answer is clicked or waiting to be clicked (idle) */
#answer-container {
	display: inline-block;
	width: 100%;
}
.answer-clicked .styling-obj {
	background-image: url("img/Radio-Pressed.png");
}
.answer-idle .styling-obj {
	background-image: url("img/Radio.png")
}
.answer-desc-style {
	pointer-events: none;
}

.answer-clicked {
    background-color: #37025a;
}


.show-explanation #answer-container {    
	pointer-events: none;
}
.show-explanation .answer-idle {    
	animation-name: wrongAnswerDisapear;
	animation-delay: 1s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
}



.correct.answer-clicked .styling-obj {
    background-image: url("./img/Correct-Answer-Icon.png");
    background-size: cover;
}

.browser-device-mobile .correct.answer-clicked .styling-obj {
    background-image: url("./img/Correct-Answer-Icon.png");
	
	width:20px;
	height:20px;

}
.incorrect.answer-clicked .styling-obj {
    background-image: url("./img/Inorrect-Answer-Icon.png");
    background-size: cover;
}

.incorrect.answer-clicked .styling-obj {
    background-image: url("./img/Inorrect-Answer-Icon.png");
	
	width:20px;
	height:20px;

}

/* answer description classes */
#answer-description-title,
#answer-description {
	display: block;
    width: 98%;
    color: white;
    text-align: left;
    line-height: 1.3;
}
#answer-description-title {
	font-size: 30px;
}
#answer-description {
	font-size: 24px;
}

.browser-device-mobile #answer-description {
	font-size: 18px;
}

@media screen   
and (min-width: 1030px)   
and (max-width: 1366px)    {
	#answer-description {
	font-size: 20px;
}
	}


#description-container {
	animation-name: becomeVisible;
	animation-delay: 2s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	opacity: 0;
}

.indicator.active-indicator {
    background: #37025a;
    border: 1px solid #37025a;
}
/* for the submit button, controls when the button is clickable */
.clickable {
	opacity: 1;

	pointer-events: auto;

	cursor: pointer;
}
.not-clickable {
	opacity: 0.2;

	pointer-events: none;
}

/* class attached to the board elements that will (when clicked) display the question box*/
.call-question,
.call-animation {
	cursor: pointer;

	position: absolute;

	z-index: 5;
}

.show-explanation #answer-button {
    display: none;
}

/* move screen elements */
/* shows the game */
@keyframes showGame {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes answerIconReveal {
	from {
		width: 0px;
		height: 0px;
	}
	to {
		width: 40px;
		height: 40px;

	}
}

@keyframes becomeVisible{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes wrongAnswerDisapear {
	0% {
		opacity: 0;
		max-height: 50px;
		padding: 1%;
		margin: 0% 0% 2% 0;
	}
	100% {
		opacity: 0;
		max-height: 0;
		padding: 0;
		margin: 0;
		border: 0;
	}
}

@keyframes disapear {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		max-height: 0;
	}
}

@keyframes hoverState {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.9);
	}
}

@keyframes hideDescription {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}

/* final animations onto prize screen */

.game-finished.screen-prize-container #prize-container {
    display: block !important;
    animation-name: becomeVisible;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
	text-shadow: 0px 0px 4px black;
}

.game-finished.screen-prize-container #title {
	display: block !important;
	height: 165px;
    
}

.game-finished #prize-container {
  display: block !important;
	
}

.game-finished.prize #board-container,
.game-finished.no-prize #board-container {
	animation-name: disapear;
	animation-duration: 1s;
	animation-fill-mode: both;
}
#claim-prize-btn {
    display: none;
}

.board-end #claim-prize-btn {
    display: block;
}

#category-label {
    font-size: 30px;
    display: flex;
    align-items: center;
    
}
.category-1.question-1 #question-outer-image,
.category-1.question-1 #question-inner-image,
.category-1.question-1 #question-outer-image::before,
.category-1.question-1 #question-inner-image::before,
.category-1.question-1 #question-outer-image::after,
.category-1.question-1 #question-inner-image::after {
    background-image: url(/trivia/assets/gradient-trivia/img/trivia-1.jpg);
}

.category-1.question-2 #question-outer-image,
.category-1.question-2 #question-inner-image,
.category-1.question-2 #question-outer-image::before,
.category-1.question-2 #question-inner-image::before,
.category-1.question-2 #question-outer-image::after,
.category-1.question-2 #question-inner-image::after {
    background-image: url(/trivia/assets/gradient-trivia/img/trivia-2.jpg);
}
 
.category-1.question-3 #question-outer-image,
.category-1.question-3 #question-inner-image,
.category-1.question-3 #question-outer-image::before,
.category-1.question-3 #question-inner-image::before,
.category-1.question-3 #question-outer-image::after,
.category-1.question-3 #question-inner-image::after {
    background-image: url(/trivia/assets/gradient-trivia/img/trivia-3.jpg);
}
.category-1.question-4 #question-outer-image,
.category-1.question-4 #question-inner-image,
.category-1.question-4 #question-outer-image::before,
.category-1.question-4 #question-inner-image::before,
.category-1.question-4 #question-outer-image::after,
.category-1.question-4 #question-inner-image::after {
    background-image: url(/trivia/assets/gradient-trivia/img/trivia-4.jpg);
}
.category-1.question-5 #question-outer-image,
.category-1.question-5 #question-inner-image,
.category-1.question-5 #question-outer-image::before,
.category-1.question-5 #question-inner-image::before,
.category-1.question-5 #question-outer-image::after,
.category-1.question-5 #question-inner-image::after {
	 background-image: url(/trivia/assets/gradient-trivia/img/trivia-5.jpg);
}


.category-1.question-6 #question-outer-image,
.category-1.question-6 #question-inner-image,
.category-1.question-6 #question-outer-image::before,
.category-1.question-6 #question-inner-image::before,
.category-1.question-6 #question-outer-image::after,
.category-1.question-6 #question-inner-image::after {
	 background-image: url(/trivia/assets/gradient-trivia/img/trivia-6.jpg);
}

.category-1.question-7 #question-outer-image,
.category-1.question-7 #question-inner-image,
.category-1.question-7 #question-outer-image::before,
.category-1.question-7 #question-inner-image::before,
.category-1.question-7 #question-outer-image::after,
.category-1.question-7 #question-inner-image::after {
	 background-image: url(/trivia/assets/gradient-trivia/img/trivia-7.jpg);
}

.category-1.question-8 #question-outer-image,
.category-1.question-8 #question-inner-image,
.category-1.question-8 #question-outer-image::before,
.category-1.question-8 #question-inner-image::before,
.category-1.question-8 #question-outer-image::after,
.category-1.question-8 #question-inner-image::after {
	 background-image: url(/trivia/assets/gradient-trivia/img/trivia-8.jpg);
}

/* START: post game collection customizations */
#required-info {
    margin: 50px auto;
}
.game-finished.address-already-exists #take-me-there {
    display: none;
}
.game-finished #take-me-there {
    display: block;
    padding: 20px 60px;
    width: max-content;
    text-align: center;
	margin-top: 10px;
}

.game-finished.you-fail.no-prize #take-me-there {
    display: none;
}

#take-me-there {
	display: none;
	pointer-events: auto;
	z-index: 1000;
	
}

#try-again-btn {
    width: max-content;
    padding: 20px 60px;
   border:none;
}



.browser-device-mobile #info-required-button {
	font-size:20px;
	border:none;
	border-radius: 0px;
}

#info-required-button {
	padding:20px 60px;
	width:max-content;
	font-size:25px;
	margin-top:10px;
	border:none;
}





#prize-info-skip-btn {
    display: block;
    pointer-events: auto;
    cursor: pointer;
    color: #333;
    text-decoration: underline;
    font-size: 20px;
	padding:10px;
}
.screen-required-info.game-finished #prize-container {
	display: none !important;
}


/* END: post game collection customizations */

/* START: CSS for try again button */
.game-finished.no-prize #prize-container {
    display: block !important;
    font-size: 35px;
    margin-top: 0;
}

.game-finished.no-prize #take-me-there {
    display: none;
}

#try-again-btn {
	pointer-events: auto;
    padding: 10px;
}




.game-finished #go-back-to-board{
    display: block;
	animation-name: pulsingGrowing;
	animation-delay: 3s;
	animation-duration: 1.5s;
	animation-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.850);
	animation-iteration-count: infinite;
	padding: 20px;
	width: max-content;
	font-size: 25px;
	
}

.browser-device-mobile #go-back-to-board {
	font-size: 20px;
	padding: 15px 20px;
	margin-top: 10em;
}
/* END: CSS for try again button */


/* ------------------------------------------------------------ start of peak performance preloader  ------------------------------------------------------- */




/* Minimum aspect ratio */
@media (min-aspect-ratio: 10/5) {
  body {
    background-image: url("/trivia/assets/gradient-trivia/img/Background-Wide-Screens.jpg");
  }
	#intro-description {
		margin: 5vh auto 4vh auto;
		  

	}
}


@keyframes pulsingGrowing{
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);

}

}

/* Special Screens - center vertically */

.screen-training-container #game-container, .game-over-win #game-container, .game-over-lose #game-container {
	display: flex !important;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
  }

#training-container {
  margin: 0 auto;
  top: 12%;
  position: absolute;
  width: 100%;
}

#Video-Wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.screen-board-container #title,
.screen-training-container #title
{
    display: none;
}

@media only screen 
  and (max-height: 800px) 
  and (orientation: landscape) {
	  #training-container {
		  width: 700px;
		  height: 400px;
		  top: 0px;
		  position: inherit;
	  }
	  #play-button {
		  font-size: 20px;
		  width: max-content;
	  }
}

@media only screen 
  and (max-height: 500px) 
  and (orientation: landscape) {
	  #training-container {
		  width: 400px;
		  height: 300px;
		  top: -30px;
	  }
	  #play-button {
		  font-size: 20px;
		  width: inherit;
	  }
}

