.homeBody {
	background: black; 
	color: lightgrey;
	margin: 0;
}

.bottomMargin {
	margin-bottom: 1.5rem;
}

.footerTriad { max-width: 6rem; width:100%; display:block; margin:0 auto; }

.topBarImage { max-width: 800px; }

.fullWidth {width: 100%;}

.mainContent {max-width:40rem;}

.emailInput{
	background-color: lightgrey; border-color: grey; color: black;
}

.slightlySmallerText {
	font-size: 0.9rem; 
}

.mybutton {
	display: inline-block;
	border-radius: 4px;
	background-color: #42bded;
	border: none;
	color: black !important; 
	text-align: center;
	font-size: 10pt;
	padding: 4px;
	transition: all 0.5s;
	margin: 5px;
}
.mybutton:hover {
	background-color: #c54920;
	color: white;
}
.mybutton span {
	display: inline-block;
	position: relative;
	transition: 0.5s;
}
.mybutton span:after {
	content: '>>';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
	color: white;
}
.mybutton:hover span {
	padding-right: 25px;
	color: white;
}
a.mybutton:hover span:after {
	opacity: 1;
	right: 0;
	color: white;
}


