.noMobile {
	display: none;
}

.noComputer {
	display: inline;
}

body{
	font-size: 2.3em;
	font-weight: normal;
}

body h1{
	font-size: 2em;
} /*weird glitch for mobile h1 sizing fix*/

.containerBody{
	width: 95%;
	margin:auto;
	margin-top: 4.6em;
	margin-bottom: 7em;
}

.button {
	margin-bottom: 0;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border-left: none;
	border-right: none;
}

.button:hover{
	background-color: red;
	border: yellow 5px solid;	
	color: yellow;
	border-left: none;
	border-right: none;
}

.button:active{
	background-color: red;
	border: yellow 5px solid;	
	color: yellow;
	border-left: none;
	border-right: none;
}

.button:hover a{
	color: yellow;
}

.button:active a{
	color: yellow;
}

.bottom{
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
}

.bottom .button{
	padding: 0.7em 0px;
}

.bottomText{
	background-color: #cccccc;
	margin: 0px;
	color: black;
}

.box-1 {
	background: url(images/glassBackground.jpg) center no-repeat;
	background-size: cover;
	border: 5px darkblue solid;
	padding: 0.7em 0.7em;
	color: black;
	/*margin: 5em 0;*/
	margin-top: 2.5%;
	/*font-weight: 50;*/
	font-style: italic;
	text-align: center;
	text-decoration: underline;
	margin-bottom: 1em;
	font-size: 1em;
}

.homepageButton {
	text-align: center;
	background-color: lightgreen;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 3em;
	padding: 0.7em;
	margin-top: 1.5em;
	border: solid black;
	border-width: 5px;
}

.homepageButton2 {
	text-align: center;
	background-color: yellow;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 3em;
	padding: 0.7em;
	margin-top: 1.5em;
	border: solid black;
	border-width: 5px;
}

.homepageButton:hover{
	background-color: red;
	border: yellow 5px solid;	
}

.homepageButton:hover a{
	color: yellow;
}

.homepageButton2:hover{
	background-color: red;
	border: yellow 5px solid;	
}

.homepageButton2:hover a{
	color: yellow;
}

.categories {
	position: fixed;
	top: 0;
	font-weight: bold;
	width: 100%;
}

.categories ul{
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 0.3em 0px;
	overflow: auto;
	background-color: #333;
}

.categories li a{
	display: block;
	color: white;
	text-align: center;
	padding: 0.7em 0.7em;
	text-decoration: none;
}

.leadTable {
  border-collapse: collapse;
  width: 100%;
}

.leadTable td, th {
	border: 1px solid #bfbfbf;
 	text-align: left;
 	padding: 8px;
 	padding-bottom: 8px;
}
.leadTable th{
	color: black;
	background-color: #e6e6e6;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-45deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.logo:hover {
animation: rotate 1s ease-out;
}

.logo.noComputer {
	width: 2.3em;
	margin-top: -0.8em;
}


