html {
  height: 100%;
}
body {
  min-height: 100%;
  background-image: url(.assets/icon_bg.png);
  background-repeat: no-repeat;
  background-position: bottom 50px right 50px;
  background-color: #000;
  background-size: auto 90%;
  margin: 0;
  padding: 0;
}
.center { 
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  max-width: 400px;
  margin: 50px auto;
  padding: 55px 30px 30px;
  background-color: rgba(255,255,255,1);
  -moz-box-shadow: 0 0 20px black;
  -webkit-box-shadow: 0 0 20px black;
  box-shadow: 0 0 20px black;
  text-align: center;
}
.logo {
	width: 100%;
	max-width: 200px;
}
.info {
	display: block;
	text-align: center;
	margin-top: 35px;
	font-family: 'Maven Pro', sans-serif;
	font-size: 22px;
}
.info a {
	text-decoration: none;
	color: #333;
	font-weight: 600;
}
.info .ip {
	font-size: 28px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 30px;
}
.info .mail {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 30px;
}
.copy {
	display: block;
	text-align: center;
	margin-top: 60px;
	font-family: 'Maven Pro', sans-serif;
	font-size: 16px;
	font-style: italic;
}		
@media (max-width: 768px) {
	body {
		background-image: none;
	}
	.center { 
		top: calc(50% - 50px);
		display: block;
		padding: 30px 15px 20px; 
		max-width: calc(100% - 80px);
	}
	.logo { max-width: 280px; }
	.info { 
		margin-top: 20px; 
		font-size: 18px; }
	.copy { 
		margin-top: 50px;
		font-size: 13px; 
	}
}