body {
	font-family: 'Atkinson Hyperlegible', -webkit-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	margin: 0;
	padding: 0;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #075269;
  
}



#collectiveNoun {
	  padding: 15px 30px;
	  font-weight: bold;
	  background-color: rgb(170, 236, 232);
	  color: black;
	  border: none;
	  border-radius: 8px;
	  cursor: pointer;
	  transition: background-color 0.3s;
	  width:90%;
	  min-width: 300px;
	  min-Height: 150px;
	  font-size: 2em;
	  
	 white-space: normal;  
  }
  
#collectiveNoun:hover {
	  background-color: rgb(202, 255, 252);
	  scale: 1.05;
	  transition: 0.5s;
  }
#collectiveNoun:active {
	  background-color: rgb(202, 255, 252);
		
	}
	
#collectiveNoun:focus {
		outline: 3px solid #FFD700;
		outline-offset: 2px;
	}
 @media (prefers-contrast: high) {
		#collectiveNoun {
			border-width: 3px;
		}
	}
@media (prefers-reduced-motion: reduce) {
		#collectiveNoun {
			transition: none;
		}
		#collectiveNoun:active {
			transform: none;
		}
	}
	

	
	/* Screen reader only text */
.sr-only {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}