body {
	text-align: center;
	width: 100%;
}

.title{
	font-size: 3em;
}

.contact_left{
	width: 50%;
	float: left;
	display: block;
}

.contact_right{
	width: 50%;
	float: right;
	display: block;
}
.info{
	text-decoration: underline;
}
.contact_label{
	display: inline-block;
	font-size: bold;
	font-size: 1.5em;
}
.contact_values{
	font-weight: bold;
	font-size: 1.5em;
}
.div_image_sale{
	width: 50%;
	position: absolute;
	animation-name: einblenden;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

.image_sale{
	width: 100%;
	animation: pulse 5s ease-in-out infinite;
	animation-delay: 2.1s;
}

.clear_float{
	clear: both;
}
@-webkit-keyframes "einblenden" {
  from {left: -50%;}
  to {left: 25%;}
}

@-webkit-keyframes "pulse" {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
	   -webkit-transform: scale(0.5);
	   transform: scale(0.5);
	}
	100% {
		-webkit-transform: scale(1);
	   transform: scale(1);
	}
}