#subscribe {
    width: 200px;
    height: 200px;            
    position: absolute;
    top: 30px;
    left: 150px;
        	
    border: 0;
	padding: 0;
	margin: 0;
	
	grid-area: banner;
	
	background-image: url("/images/subscribe.png");
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
/**
		background-size: cover; /* Resize the background image to cover the entire container /	
**/		
	background-size: contain;	
	cursor: pointer;
}
#subscribe:hover {	
	cursor: hand;
}


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
	#subscribe {
		display: none;
	}
} 
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
	#subscribe {
		display: none;
	}
} 
