@charset "UTF-8";


body {   
	background: #000;
}

h1, h2, h3, h4, h5, p, table     {
	color: #fff; margin: 20px;
}


p   {
	font-size: 14pt; 
}

.ital  {
	font-style: italic;
}

.lobster-two-regular {
  font-family: "Lobster Two", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lobster-two-bold {
  font-family: "Lobster Two", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lobster-two-regular-italic {
  font-family: "Lobster Two", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lobster-two-bold-italic {
  font-family: "Lobster Two", sans-serif;
  font-weight: 700;
  font-style: italic;
}

/*   stay connected animation     */

.chameleon {
	text-align: center;
	font: bold 2em sans-serif;
	color: #ff0000;
	animation: myAnimation 20s ease 1s 20 forwards;
}

.chameleon2 {
	float: right; 
	margin: 0 20px;
	color: #ff0000;
	animation: myAnimation 20s ease 1s 20 forwards;
}

@keyframes myAnimation {
 50% {
  color: #ffffff;
 }
 100% {
  color: #00ffff;
 }
}


