
.content {
	width: 600px;
	height: 400px;	
	margin: 150px auto;
	text-align: center;
	font-family: sans-serif;
	background: #fff;
	border-radius: 23px;    
	box-shadow: 0px 0px 20px #ccc;
}

.content .logo{	
	padding: 5px 0;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.content p.h1 {
	display: block;
	margin-bottom: 60px;
	font-size: 1.4rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding-top:  20px;
}
.content p.h1 span {
	display: block;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 0;
	margin-top: 5px;
}
.content a {	
	padding: 25px 80px 25px 50px;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	border-radius: 10px;
	transition: all.3s;
}
.content a img {
	position: absolute;
	width: 25px;
	right: 25px;
	top: 20px;
}

@media screen and (max-width: 768px) {
	.content {
		width: 100%;
		height: 400px;		
		margin: 150px 0;
		text-align: center;
		font-family: sans-serif;
	}
	.content p.h1 {
		font-size: 1rem;
	}
	.content p.h1 span {
		font-size: 2.2rem;
	}
}

/*************************/
.content a:hover {
	background: #228a00;
	transition: all.3s;
}