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

html, body {
	margin: 0px;
	padding: 0px;
}

html {
	background: url("images/home-background-lower.jpg") no-repeat center center fixed; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	background-color: #cdb28c;
}

body {
	overflow: hidden;
}

#home-logo img {
	width: 450px;
	height: 351px;
}

#home-logo {
	background: url("images/home-logo.png") no-repeat center center; 
  	-webkit-background-size: contain;
  	-moz-background-size: contain;
  	-o-background-size: contain;
  	background-size: contain;
	width: 450px;
	height: 350px;
	position: fixed;
	margin-left: -225px;
	margin-top: -225px;
	top: 50%;
    left: 50%;
}

#listen {
	width: 100%;
	text-align: center;
	clear: both;
}

#listen img {
	width: 100px;
	height: 100px;
	margin-right: 10px;
	margin-left: 10px;
	opacity: 93%;
}

#listen img:hover {
	opacity: 100%;
	cursor: pointer;
    position: relative; 
    bottom: 3px;
}

#home-lower {
	position: absolute;
	top: 70%;
	width: 100%;
    text-align: center;
}

.centered {
  position: fixed; /* or absolute */

}

#copyright {
    position: absolute;
    bottom: 0; 
    height: 5px;
    background-color: #a7110e;
    width: 100%; 
}

#copyright p {
    position: absolute;
    bottom: 0;
    left: 0; 
    background-color: #a7110e;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    font-size: .85em;
    color: #fff;
    margin: 0px;
    padding: 7px 7px 7px 7px;
}

@media only screen and (max-width: 1000px) {
    
    #copyright {
        display: none;
    }

}

@media only screen and (max-width: 690px) {
	
	html {
		overflow: hidden;
	}
	
	#home-logo {
		width: 300px;
		height: 234px;
		margin-left: -150px;
	}
	
    
    #listen img {
    width: 75px;
    height: 75px;
    margin-right: 5px;
    margin-left: 5px; 
    }
	
	
}