
* {
	box-sizing: border-box;
  }

  h1 {
	font-size: 2.25em;
  }
  
  h2 {
	font-family: quicksand;
	font-weight: bold;
	font-size: 1.35em;
	line-height: 1.5;
	margin-bottom: 20px;
  }
  
  h3 {
	font-size: 1em;
	font-family: Asap;
  }
  
  p, a {
	font-size: 1em;
  }

  html {
	width: 100%;
  }
  
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 700px;
    background-color: #fff;
    font-family: Asap;
    margin: 0 auto;
    padding: 0;
    justify-content: space-between;
  }

  html, body {
	display: flex; /* Set up flexbox */
	flex-direction: column; /* Stack elements vertically */
	height: 100vh;
	justify-content: space-between;
  }
  
  .app-header {
	text-align: center;
	margin-bottom: 1.5em;
	width: 100%;
  }

  .app-header {
	position: relative;
  }
  
  .alpha-label {
	position: absolute;
	bottom: 42px;
	font-size: 10px;
	color: #000;
  }
  
  
  .app-logo-home {
	width: 100%;
	max-width: 300px; /* Make the logo responsive */
  }

  .app-logo-standard {
	margin: auto;
	max-width: 189px;
  }

  .main-content {
	flex-grow: 1;
  }
  
  .app-content {
	text-align: center;
	padding: 7px;
  }

  .summaryText {
	margin-bottom: 100px;
  }

  .home-buttons {
	margin-top: 5em;
  }
  
  .app-button {
	cursor: pointer;
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 0 auto 20px;
	padding: 10px;
	border: 1px solid #fe8723;
	border-radius: 5px;
	background-color: #fe8723;
	text-align: center;
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 1em;
  }

  .app-button-future {
	background-color: white;
	color: black;
	opacity: 51%;
	border-color: black;
  }

  form {
	padding: 15px;
  }
  
  .customization-form {
	margin: 0 auto;
	padding: 7px;
	border: none;
	border-radius: 5px;
  }
  
  .customization-form h2 {
	font-size: 1.6em;
	line-height: 1.5;
	margin-bottom: 10px;
  }
  
  .customization-form label {
	font-size: 1em;
	margin-bottom: 5px;
	display: inline-block;
	width: 200px;
  }
  
  .customization-form select {
	width: 100%;
	height: 30px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 10px;
  }
  
  .customization-form input,
  .customization-form select {
	width: calc(100% - 200px);
	height: 30px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 10px;
  }
  
  .customization-form button {
	width: 100%;
	height: 30px;
	background-color: #007bff;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
  }

  .game-container {
	text-align: center;
  }
  .game-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 23px;
	justify-items: center;
	align-items: center;
	/* width: calc(100% - 40px); */
	margin: 20px auto;
	max-width: 700px;
  }

  .game-grid-sentences {
	display: grid;
	/* grid-template-columns: repeat(2, 1fr); */
	gap: 23px;
	justify-items: center;
	align-items: center;
	/* width: calc(100% - 40px); */
	margin: 20px auto;
	max-width: 700px;
  }
  
  
  .game-option {
	background-color: #eeee;
	width: 7.2em;
	height: 7.2em;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 4px solid #fe8723;
	border-radius: 10px;
  }  

  .game-option-sentences {
	background-color: #eeee;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 4px solid #fe8723;
	border-radius: 10px;
	height: 3em;
  }  

  .error {
    background-color: #fe8723;
	content: "X";
	color: #eeee;
	font-weight: bold;
}

.error img {
	background-color: #eeee;
}

  .app-footer {
	font-size: 1em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;  /* Add this line */
}

.game-footer {
	font-size: 1em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;  /* Add this line */
}

  
  .app-footer p,
  .app-footer a,
  .game-footer p,
  .game-footer, a {
	margin: 10px;
	color: #fe8723;
	cursor: pointer;
  }
  
  @media (max-width: 600px) {

	.app-footer {
		font-size: .8em;
	}
	body {
	  padding: 10px; /* Reduce padding on smaller screens */
	}
  
	.app-logo-home, .app-logo-standard {
		width: 100%; /* Allow the logo to take up full width on smaller screens */
	  }
  
	.app-button {
	  max-width: 100%; /* Allow the button to take up full width on smaller screens */
	}
  }
  
/* spinner stuff */


/* Absolute Center Spinner */
.loading {
	position: fixed;
	z-index: 999;
	height: 2em;
	width: 2em;
	overflow: show;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	visibility: visible;
  }
  
  /* Transparent Overlay */
  .loading:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.1);
  }
  
  /* :not(:required) hides these rules from IE9 and below */
  .loading:not(:required) {
	/* hide "loading..." text */
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
  }
  
  .loading:not(:required):after {
	content: '';
	display: block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	-webkit-animation: spinner 1500ms infinite linear;
	-moz-animation: spinner 1500ms infinite linear;
	-ms-animation: spinner 1500ms infinite linear;
	-o-animation: spinner 1500ms infinite linear;
	animation: spinner 1500ms infinite linear;
	border-radius: 0.5em;
	-webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
	box-shadow:
    rgba(254, 135, 35, 0.75) 1.5em 0 0 0, 
    rgba(254, 135, 35, 0.75) 1.1em 1.1em 0 0, 
    rgba(254, 135, 35, 0.75) 0 1.5em 0 0, 
    rgba(254, 135, 35, 0.75) -1.1em 1.1em 0 0, 
    rgba(254, 135, 35, 0.75) -1.5em 0 0 0, 
    rgba(254, 135, 35, 0.75) -1.1em -1.1em 0 0, 
    rgba(254, 135, 35, 0.75) 0 -1.5em 0 0, 
    rgba(254, 135, 35, 0.75) 1.1em -1.1em 0 0;  }
  
  /* Animation */
  
  @-webkit-keyframes spinner {
	0% {
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -ms-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @-moz-keyframes spinner {
	0% {
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -ms-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @-o-keyframes spinner {
	0% {
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -ms-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @keyframes spinner {
	0% {
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -ms-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  


