body 
	{
		/* font-size: 40px; */
		/* background-color: #036; */
		background-color: rgb(0, 0, 0);
		/* font-family: 'Times New Roman', Times, serif; */
	}

img
	{
		max-height:75%;
		max-width:75%;
		width:unset!important;
		height:unset!important;
		border:inherit;
		border-radius:inherit
	}

.center 
	{
		display:block;
		margin-left: auto;
		margin-right: auto;
		width: 50%;
	}

h1 /*Heading 1 */
	{
		/*Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
		font-family: Arial, Helvetica, sans-serif;
		font-weight: bold;
		font-size: 5em;
		color: gold;
		padding: 0px;
		text-align: center;
	}
h2 /*Heading 1 */
	{
		/*Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
		font-family: Arial, Helvetica, sans-serif;
		font-weight: bold;
		font-size: 1em;
		color: gold;
		padding: 0px;
		text-align: center;
	}
p	/*Paragraph */
	{
    	color: gold;
		padding: 0px;
	}

.p1
	{
		color: bisque;
		font-size: 20px;
		padding: 0px;
	}

.highLighted-Word
	{
		color: greenyellow;
	}

/* CENTER BUTTONS */	
/* TEXT over IMAGE */
.parentContainer {
	position: relative;
	text-align: center;
	color: rgb(145, 8, 8);
	}

.centeredTextOver 
	{
	
		position: absolute;
		text-align: center;
		top: 50%;
		left: 50%;
	
	}

/* CENTER BUTTONS */	
.container {
    height: 100px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons 
------------------------------------------------------------
*/

/* https://www.youtube.com/watch?v=5kb_gvZJeoU */
/* padding: 0.5em 1em;  => means 0.5 * 12 pixals = 6px */

.pill 
	{
    	font-size: 12px;
    	font-family: "Readex Pro", sans-serif;
    	padding: 0.5em 1em;
    	margin: 0.25em;
    	border-radius: 1em;
    	border: none;
    	outline: none;
    	background: #dddddd;
    	cursor: pointer;
  	}
  
.pill:not(.pill--selected):hover 
  	{
    	background: #e4d500;
  	}

.pill:hover
	{
		background: #330101;	
	}
  
.pill--selected 
  	{
    	background: #009578;
    	color: #ffffff;
  	}
  