@font-face {
    font-family: 'Open Sans';
    src: url('../../img/OpenSans.ttf');
}

body {
	margin:0px;
	width:100%;
	height:100%;
	background-color:#424242;
	background-repeat:no-repeat;
	background-size:cover;
	font-family:'Open Sans', sans-serif;
	font-size:13px;
	color:#000;
}

#canvas-container {
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	background-color:#fff;
	overflow:hidden;
	color:#000;
}

#atlantic {
	position:absolute;
	top:50%;
	left:50%;
	width:470px;
	height:40px;
	margin-left:-235px;
	margin-top:-20px;
	background-repeat:no-repeat;
	background-size:contain;
	background-image:url('img/atlantic.png');
}

#morse-station {
	position:absolute;
	bottom:100px;
	left:100px;
	width:400px;
	height:300px;
	background-repeat:no-repeat;
	background-size:contain;
	background-image:url('img/station.png');
}

#radio-tower {
	position:absolute;
	bottom:200px;
	right:20%;
	width:240px;
	height:70%;
	background-repeat:no-repeat;
	background-size:contain;
	background-image:url('img/tower.png');
}

div.wave {
	display:none;
	position:absolute;
	top:50px;
	right:0%;
	width:100px;
	height:200px;
	background-repeat:no-repeat;
	background-size:contain;
	background-image:url('img/wave.png');
	opacity:0;
	animation-name: wave;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	-webkit-animation-name: wave;
	-webkit-animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
}

#message-container {
	display:none;
	position:absolute;
	bottom:80%;
	right:35%;
	min-height:100px;
	width:60%;
	padding-right:80px;
	text-align:right;
	opacity:0;
	transition:opacity 0.8s;
}

#message {
	font-size:40px;
}

#message span {
	display:inline-block;
	position:relative;
	margin:5px;
	text-align:center;
}

#message span span {
	display:block;
	margin-top:-20px;
	font-size:30px;
	color:#8d8d8d;
}

#bubble-tip {
	position:absolute;
	bottom:0px;
	right:0px;
	width:100px;
}


#text-container {
	position:absolute;
	top:100px;
	right:35%;
	z-index:9;
	max-width:50%;
	text-align:center;
	transition:opacity 0.8s;
}

#text-container img {
	max-width:100%;
	max-height:100px;
}

#read-more {
	display:none;
	position:absolute;
	bottom:100px;
	right:100px;
	z-index:10;
	padding:10px;
	background-color:rgba(0,0,0,0.1);
	opacity:0;
	color:#424242;
	transition:opacity 2s;
}

#read-more a {
	color:#8a8a8a;
	text-decoration:none;
	border-style:solid;
	border-color:#2071a6;
	border-width:0px;
}

#read-more a:hover {
	text-decoration:none;
	border-width:0px 0px 1px 0px;
}

@keyframes wave {
	0% { height:200px; right:0%; opacity:0; }
	50% { opacity:1; }
	100% { height:400px; right: 25%; opacity:0; }
}

@-webkit-keyframes wave {
	0% { height:200px; right:0%; opacity:0; }
	50% { opacity:1; }
	100% { height:400px; right: 25%; opacity:0; }
}