@charset "UTF-8";
/* CSS Document */

* {
	font-family: proxima-nova,sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.container {
	width: 90%;
	max-width: 500px;
	margin: auto;
}
#logo {
	text-align: center;
	margin-top: 20px;
}
#logo img {
	width: 100%;
	max-width: 150px;
}

#links {
	width: 100%;
	float: left;
	margin-top: 30px;
}
#links a {
  background: #ccc;
  width: 100%;
  float: left;
  margin-bottom: 30px;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
	color: #fff;
	text-decoration: none;
}
#links a.facebook {
	background: #4267B2;
}
#links a.instagram {
	background: #C13584;
}
#links a.phone {
	background: #14A2D7;
}
#links a.mail {
	background: #777;
}
#links i {
	margin-right: 20px;
}
#copyright {
	width: 100%;
	float: left;
	text-align: center;
	font-size: 14px;
	color: #777;
	margin-top: 20px;
}
#copyright span {
	font-size: 10px;
}