h1 {
	margin-bottom: 1%;
	font-size: 59px;
	color: white;
	text-align: center;
}

p{
	text-align: center;
}

.content {
	width: 100%;
	text-align: center;
}

.content > a > img{
	margin: auto;
}

.responsive-link::before {
  display: none;
}

@media (max-width: 600px) {
	.content {
		overflow: hidden;
	}
	
	.content > a > img{
		width: 70vw;
		height: auto;
		margin: auto;
	}
    
    .responsive-link::before {
    	content: attr(data-mobile-link);
  	}
}

@media (min-width: 601px) {
	h1{
		font-size: 120px;
	}
	
	p{
		font-size: 30px;		
		margin-top: 30px;
	}
    
    .responsive-link::before {
    	content: attr(data-desktop-link);
  	}
}

@media (min-width: 1200px) {
	p{
		max-width: 1200px;
		background-position: center;
		margin: auto;
	}
}

@media (min-width: 600px) and (max-height: 700px) {

}