/* Mozilla based browsers */
::-moz-selection {
	background-color: #FFD100;
	color: #000;
}
/* Works in Safari */
::selection {
	background-color: #FFD100;
	color: #000;
}
body{
	/* Gradient BG not in use right now.
	background: #a32626; 
	background: -moz-linear-gradient(top,  #a32626 0%, #480063 51%, #15006b 100%); 
	background: -webkit-linear-gradient(top,  #a32626 0%,#480063 51%,#15006b 100%); 
	background: linear-gradient(to bottom,  #a32626 0%,#480063 51%,#15006b 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a32626', endColorstr='#15006b',GradientType=0 );*/
	background-image: url(/img/moon2.jpg);
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	font-weight: 600;
	font-style: normal;
	font-size: 1em;
	text-rendering: optimizeLegibility;
	font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
}
a {
	color: white;
	text-decoration: none;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
a:hover {
	text-shadow: 0 0 12px #FFFFFF;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
h1, h2, h3, h4, h5, p.copy, p{
	text-align: center;
	color: white;
	margin-bottom: 10px;
}
h1, h2, h3, h4, h5 {
	margin-top: 0;
}
p {
	font-weight: 300;
	padding: 0 15px;
	font-size: 85%;
	letter-spacing: .5px;
}
.ital {
	font-style: italic;
}
.left {
	text-align: left;
}
.center {
	text-align: center;
}
.copy {
	font-size: 80%;
}
.small {
	font-size: 70%;
}
.smaller {
	font-size: 65%;
	opacity: 70%;
}
.under {
	text-decoration: underline;
}
.container {
	max-width: 300px;
	margin: 0 auto;
	position: relative;
	background-color: rgba(0,0,0, 0.75);
	-webkit-box-shadow: 0 0 20px 5px rgba(0,0,0,.85);
	box-shadow: 0 0 20px 5px rgba(0,0,0,.85);
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.wrapper {
	padding: 0 20px ;
}
.heart-container {
	position: relative;
	height: 100px;
	width: 100%;
}
.button {
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding:10px 15px 12px;
	display: inline-block;
	margin-top: 30px;
	margin-bottom: 40px;
	background-color:transparent;
	color: white;
	border: 1px solid white;
	-webkit-box-shadow: 0 0px 12px 3px rgba(255,255,255,.3);
	box-shadow: 0 0px 12px 3px rgba(255,255,255,.3);
}
.button:hover {
	border-color: black;
	background-color: black;
	color:white;
	-webkit-box-shadow: 0 3px 12px 0 rgba(0,0,0,.2);
	box-shadow: 0 3px 12px 0 rgba(0,0,0,.2);
}
.union {
	background-color: white;
	color: black;
	padding: 4px 0 5px;
}
.union a {
	color: black;
}
.union a:hover {
	color: #a32626;
}
.white {
	background-color: white;
}
.top-round {
	-webkit-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
}
.bottom-round {
	-webkit-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}
img {
	border: 1px solid black;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
img:hover {
	filter: grayscale(80%);
	-webkit-filter: grayscale(80%);
	-moz-filter: grayscale(80%);
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
// Heart Animation /////////
.heart-container {
	width: 100%;
	text-align: center;
}
#heart {
	position: relative;
	width: 100px;
	height: 90px;
	animation: heartbeat 2s infinite;
	margin:0 auto
}
#heart:before,
#heart:after {
	position: absolute;
	content: "";
	left: 50px;
	top: 0;
	width: 50px;
	height: 80px;
	background: #FFF;
	-moz-border-radius: 50px 50px 0 0;
	border-radius: 50px 50px 0 0;
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		 -o-transform: rotate(-45deg);
			transform: rotate(-45deg);
	-webkit-transform-origin: 0 100%;
	   -moz-transform-origin: 0 100%;
		-ms-transform-origin: 0 100%;
		 -o-transform-origin: 0 100%;
			transform-origin: 0 100%;
}
#heart:after {
	left: 0;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		 -o-transform: rotate(45deg);
			transform: rotate(45deg);
	-webkit-transform-origin: 100% 100%;
	   -moz-transform-origin: 100% 100%;
		-ms-transform-origin: 100% 100%;
		 -o-transform-origin: 100% 100%;
			transform-origin :100% 100%;
}
@keyframes heartbeat {
  0% {
		transform: scale( .75 );
    }
  45%
	{
		transform: scale( .95 );
    }
  50%
	{
		transform: scale( .90 );
	} 
  55%
	{
		transform: scale( .95 );
	} 
  100%
    {
		transform: scale( .75 );
	} 
}