#game{
  animation-name: hvrlinks;
  animation-duration: 0.5s;
  background-color: var(--dark-green-2);
  border-radius: 9px; 
}
#game a{
	color: white;
	font-weight: normal;
} 


@keyframes hvrlinks {
  0% {background-color: var(--light-green-2); border-radius: 0px;}
  25% {background-color: var(--light-green-1); border-radius: 3px;}
  50% {background-color: var(--dark-green-1); border-radius: 6px;}
  100% {background-color: var(--dark-green-2); border-radius: 9px;}
}

.nav {
  background-color: var(--light-green-2);
  text-align: center;
  margin-top: 0px;
  height: 50px;
  padding: 0;
}
body{
	margin:0;
}

:root {
  --light-green-2: #b5d5a7;
  --light-green-1: #92c27d;
  --dark-green-1: #6aa74f;
  --dark-green-2: #38761d;
}


.links {
  font-family: Tahoma;
  display: inline-block;
  margin: 0 40px;
  height: 25px;
  width: 150px;
  padding-top: 5px;
}

.links:hover {
  animation-name: hvrlinks;
  animation-duration: 0.5s;
  background-color: var(--dark-green-2);
  border-radius: 9px;
}

.links a {
  color: black;
  text-decoration: none;
  font-weight: bold; 
  font-family:Tahoma;
}

.links:hover a {
  color: white;
  font-weight: normal;
}

#home img {
  height:25px;
  Vertical-align: middle;
}

div[animtn=“false”]:hover {
  cursor: pointer;
  animation-name: none;
  background-color: transparent;
  border-radius: 0;
}

#greenborder{
	box-sizing:border-box;
	border:1px solid white;
	background-color:#0ea32e;
	width:1200px;
	height:550px;
	margin:auto;
	margin-top:30px;
	//box-shadow: 0 0 50px 0 white;
	}
#yellowborder{
	box-sizing:border-box;
	border:1px solid green;
	background-color:#9bf2a8;
	width:1150px;
	height:500px;
	margin:22px auto;
	//box-shadow: 0 0 50px 0 green;

}

div.darn{
	padding:50px 50px;
	font-size:38px;
	font-family:Tahoma;
	font-weight:bold;
}

.button{ 
	background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 10px 28px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.why{
	float:right;
	margin-right:50px;
	margin-top:40px;
}

div.firstq{
	margin-left:30px;
	background-color:#4af768; 
	border:1px solid white; 
	border-radius:75px; 
	width:max-content;
	font-size:38px;
	font-family:Tahoma;
	font-weight:bold;
	margin-top:30px;

} 
div.firstq:hover{ 
	background-color:white;
}

div.secondq{
	margin-left:30px;
	background-color:#4af768; 
	border:1px solid white; 
	border-radius:75px; 
	width:max-content;
	font-size:38px;
	font-family:Tahoma;
	font-weight:bold; 
	margin-top:10px;
} 
div.secondq:hover{ 
	background-color:white;
}
div.thirdq{
	margin-left:30px;
	background-color:#4af768; 
	border:1px solid white; 
	border-radius:75px; 
	width:max-content;
	font-size:38px;
	font-family:Tahoma;
	font-weight:bold; 
	margin-top:10px;
	}
div.thirdq:hover{ 
	background-color:white;
}
	/*body:before {
		content: '';
	  display: block;
	  position: absolute;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  left: 0;
	  background: linear-gradient(to bottom right, orange, yellow);
	  opacity: 0.5;
	  z-index: -1;
	  background-size: cover;
	}*/

	
/*.inline{
  display: inline-block;
}

.radio{
  color:#999;
  
  position:relative;
}
.radio span{
  position:relative;
   padding-left:20px;
}
.radio span:after{
  content:'';
  width:15px;
  height:15px;
  border:3px solid;
  position:absolute;
  left:0;
  top:1px;
  border-radius:100%;
  -ms-border-radius:100%;
  -moz-border-radius:100%;
  -webkit-border-radius:100%;
  box-sizing:border-box;
  -ms-box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
}
.radio input[type="radio"]:after{
   cursor: pointer; 
  position:absolute;
  width:100%;
  height:100%;
  z-index: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
}
.radio input[type="radio"]:checked + span{
  color:#0B8;  
}
.radio input[type='radio']:checked:after + span:before{
   content:'';
  width:5px;
  height:5px;
  position:absolute;
  background:#0B8;
  left:5px;
  top:6px;
  border-radius:100%;
  -ms-border-radius:100%;
  -moz-border-radius:100%;
  -webkit-border-radius:100%;
}*/