*, *::before, *::after {
	box-sizing: border-box;
	font-family: Gotham Rounded;
  }
  
  
  body {
	--hue: var(--hue-neutral);
	padding: 0;
	margin: 0;
	display: flex;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
	background-color:#8FA4E1;
  }
  
  .container {
	width: 800px;
	max-width: 90%;
	background-color: #E3E3E3 ;
	border-radius: 10px;
	padding: 10px;
  }
  
  .btn-grid {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 10px;
	margin: 20px 0;
  }
  
  .btn {
	--hue: var(--hue-neutral);
	border: 1px solid;
	background-color: #6148F1 ;
	border-radius: 5px;
	padding: 5px 10px;
	color: white;
	outline: none;
  }
  
  .btn:hover {
	border-color: black;
  }
  
  .btn.correct {
	background-color:#34FC40 ;
	color: black;
  }
  
  .btn.wrong {
	background-color: #FC3434 ;
	color: black;
  }
  
  .start-btn, .next-btn {
	font-size: 20px;
	font-weight: bold;
	padding: 10px 20px;
	background-color: #6148F1;
  }
  
  .controls {
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .hide {
	display: none;
  }

  .question {
	 font-size: 30px; 
	 font-weight: bold;
  }