@charset "utf-8";
/* CSS Document */

/* LINK STYLES  */

a:link
	{
	color: green;
	background-color: transparent;
	text-decoration: none;
	}
a:visited 
	{
	color: pink;
	background-color: transparent;
	text-decoration: none;
	}
a:hover 
	{
	color: red;
	background-color: transparent;
	text-decoration: underline;
	}
a:active 
	{
	color: yellow;
	background-color: transparent;
	text-decoration: underline;
	}

/* BUTTON STYLE LINK */
a.mybutton:link, a.mybutton:visited 
	{
	background-color: #0F3;
	color: white;
	padding: 15px 25px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	}
	a.mybutton:hover, a.mybutton:active 
	{
	background-color: blue;
	}
	
/* FONT STYLES  */
p{}
h1{}
h2{}
h3{}
h4{}
h5{}
h6{}
/* PAGE STRUCTURE  */
html
	{
	height: 100%;
	margin: 0px;
	}

body 
	{
	font-size: 10px; /* Default font size for page, use em for all other fonts*/
	background-color: #c0001c;
	font-family: Arial, Helvetica, sans-serif;
	
	/*line-height: 16px;*/
	color: #FFF;
	height: 100%;
    margin: 0px;
	}
#background 
	{
	width: 100%;
	height: 100%;
	background-image: url(../img/HamRadio-Bkgrnd.png);
	background-position: right bottom;
	background-size: 45%;
	background-repeat: no-repeat;
	}
#wrapper
	{
	/*border: 1px solid #000;*/
	width: 700px;
	height: 750px;
	margin: 10px auto;
	text-align: center;
	}
#tower
	{
	/*border: 1px solid #0F0;*/
	width: 300px;
	height: 300px;
	margin: 0px auto;
	/*background-image: url(../img/radio-tower2.gif);*/
	background-repeat: no-repeat;
	background-position: top;
	background-size: 75%;
	clear: both;
	}
#callsign
	{
	font-size: 3.6em;
	font-weight: bold;
	color: #000;
	height: 40px;	
	}
#content
	{
	/*border: 1px solid #03C;*/
	width: 600px;
	height: 300px;
	margin: 0px auto;
		
	}
.quote
	{
	font-size: 2.2em;
	font-style: italic;
	}
#arrl
	{
	margin: 0px auto;
	/*border:1px solid #000;*/
	width: 250px;
	height: 160px;
	background-size: 50%;
	background-image: url(../img/ARRL-Logo.jpeg);
	background-repeat: no-repeat;
	background-position: bottom center;
	}
/* RADIO TOWER ANIMATION */
@keyframes wave1 {
  0% { opacity: 1; }
  33% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
} 
@keyframes wave2 {
  0% { opacity: 0; }
  30% { opacity: 0; }
  33% { opacity: 1; }
  66% { opacity: 1; }
  70% { opacity: 0; }
  100% { opacity: 0; }
} 
@keyframes wave3 {
  0% { opacity: 0; }
  60% { opacity: 0; }  
  66% { opacity: 1; }
  99% { opacity: 1; }
  100% { opacity: 0; }
} 
#Wave-1-R {
	opacity: 1;
	animation: wave1 .5s 10; /* Call to keyframes Duration RepeatCount */
	}
#Wave-1-L {
	opacity: 1;
	animation: wave1 .5s 10;
	}
#Wave-2-R {
	opacity: 1;
	animation: wave2 .5s 10;
	}
#Wave-2-L {
	opacity: 1;
	animation: wave2 .5s 10;
	}
#Wave-3-R {
	opacity: 1;
	animation: wave3 .5s 10;
	}
#Wave-3-L {
	opacity: 1;
	animation: wave3 .5s 10;
	}