



.startstopbutton:hover {cursor: pointer}
.startstopbutton{
  width: 110px;
  height: 110px;
  line-height: 110px;
  border-radius: 50%;
  font-size: 28px;
  text-align: center;
margin: 0px 30px;
text-transform: uppercase; 
font-weight: 700;
}

.buttonstart {color: #fff; background-color: #12b61a; border: 3px solid #346D37; background-image: linear-gradient(180deg, #2ddf35 0%, #069c0d 100%); text-shadow: 1px 1px 2px black;}
.buttonstop {color: #fff; background-color: red; border: 3px solid #8C3737;  background-image: linear-gradient(180deg, #ea0d0d 0%, #8c3737 100%);  text-shadow: 1px 1px 2px black;}
.buttonstart:hover {background-image: linear-gradient(180deg, #2ddf35 0%, darkgreen 100%);}
.buttonstop:hover {background-image: linear-gradient(180deg, #e70e0e 0%, #641818 100%);}

.startbuttonon {background-color: #346D37; pointer-events: none; background-image: none; text-shadow: none;}
.stopbuttonon {background-color: #8C3737; pointer-events: none;  background-image: none; text-shadow: none;}
.stopbuttonon > span, .startbuttonon > span {opacity: .6}




.startstop {
display: flex;
width: 100%;
justify-content: center;
align-items: center;

}


.deckheader {
display: flex;
align-items: center;
justify-content: flex-start;
background-color: var(--alt-bg);
color: #fff;
height: 60px;
padding: 0px 14px;
position: relative;
margin-top: 40px;
}

.thedeck {
font-size: 22px; 
line-height: 1em;
}

.deckswitcher {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 30px; 
  line-height: 1em;
  color: #fff;
  text-align: center;
  background: #aaa;
margin-right: 15px;
}
.deckchoices {
	position: absolute; 
	left: 0px;
	top: 60px;
	background: #aaa;
	z-index: 10;
}

.deckchoice {
	font-size: 18px;
	padding: 6px 14px;
	border: 1px solid #ccc;
}

.deckchoice:hover {
background-color: #1b407d;
}

.deckswitcher:hover, .deckchoices:hover {
cursor: pointer;
}

.deckswitcheroff {
	transform: rotate(180deg);
  	animation-name: rotatemeup;
  	animation-duration: .3s;
}
.deckswitcheron {
	transform: rotate(0deg);
  	animation-name: rotatemedown;
  	animation-duration: .3s;
	background: #1b407d;
}
.deckchoicesoff {
	display: none;
}
.deckchoiceson {
	display: block;
}


.decklink {font-size: 16px;}
.decklink a {color: #fff;}
.decklink img {width: 12px; margin-left: 3px;}


.thequestion {
border: 4px solid var(--alt-bg);
position: relative;
overflow: hidden;
height: 150px;
margin: 0px;
border-top: 0px;
margin-bottom: 30px;
background-color: #fff;
font-size: 26px;
}

#questionlist {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  font-style: normal;
font-size: 32px;
line-height: 1em;
position: relative;
text-align: center;
width: 95%;
margin: auto;
color: #1b407d;
}

#questionlist div {
height: 150px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
border: 0px solid red;
}


.MiniMenu {
position: absolute;
top: 0;
right: 0;
margin-right: 20px;
font-size: 14px;
}






@media screen and (max-width: 600px) {
body {font-size: 28px; line-height: 26px;}
.pagename {font-size: 30px; margin: 20px 0px 30px 0px; line-height: 30px;}
.thequestion {}
.startstopbutton{
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 22px;
margin: 0px 20px;
	}
#questionlist {
font-size: 22px;
line-height: 1em;
}
}






/* The animation code */
@keyframes startroll {
  from {top: -1575px;}
  to {top: -75px;}
}

.startanimation {
  animation-name: startroll;
  animation-duration: 1.1s;
  animation-iteration-count: infinite;
animation-timing-function: linear;
}

/* The animation code */
@keyframes stoproll {
  from {top: -600px;}
  to {top: 0px;}
}

.stopanimation {
  animation-name: stoproll;
  animation-duration: 1.1s;
  animation-iteration-count: 1;
animation-timing-function: ease-out;
}








@keyframes rotatemedown {
  from {transform: rotate(180deg); background: #aaa;}
  to {transform: rotate(0deg); background: #1b407d;}
}

@keyframes rotatemeup {
  from {transform: rotate(0deg);  background: #1b407d;}
  to {transform: rotate(180deg); background: #aaa;}
}










/* ---------- HAMBURGER MENU ----------- */


.menu-toggle {
  font-size: 2rem;
  background: none;
  border: 0px solid red;
  display: inline-block;
  padding: 20px;
  z-index: 10;
  position: relative;
  cursor: pointer;
 }



.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #222;
  padding: 2rem 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 1000;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 1rem 0;
  font-size: 1.2rem;
}

.menu-selected {
  opacity: .8;
  display: block;
  color: white;
  text-decoration: none;
  margin: 1rem 0;
  font-size: 1.2rem;
  text-decoration: underline;
}

.close-menu {
  background: none;
  border: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 2rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}



/* ---------- HAMBURGER MENU ----------- */















