/* CSS Document */


body div.wrap footer {
	position: fixed;
	width: 100%;
	height: 5rem;
	padding: 1.5rem 0 0 0;
	margin: 0;
	bottom: 0;
	text-align: center;
	background-color: rgba(222, 105, 135, 1);
	border-radius: 100% 100% 0 0;
	opacity: .9;
}

body div.wrap footer p {
	font-size: 1.5rem;
}
body div.wrap footer p a,
body div.wrap footer p a:link,
body div.wrap footer p a:visited {
	color: #fff;
	text-decoration: none;
}
body div.wrap footer p a:active,
body div.wrap footer p a:hover {
	opacity: .7;
}


@media only screen and (max-width: 480px) {

	body div.wrap footer {
		position: fixed;
		width: 100%;
		height: 4rem;
		padding: 1.3rem 0 0 0;
		margin: 0;
		bottom: 0;
		text-align: center;
		background-color: rgba(222, 105, 135, 1);
		border-radius: 100% 100% 0 0;
		opacity: .9;
	}

	body div.wrap footer p {
		font-size: 1.2rem;
	}
	
	
}

