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



.socials {
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
}

.socials .link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px dashed white;
  background-clip: content-box;
  padding: 10px;
  transition: .5s;
  color: #D7D0BE;
  margin-left: 5px;
  margin-right: 5px;
  text-shadow:
    0 -1px 0 rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 70px;
}

.socials .link span {
  display: block;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.socials .link:hover {
  padding: 20px;
  color: white;
  margin-left: -5px;
  transform: translateX(10px) rotate(360deg);
}

.socials .link.google-plus {
  background-color: tomato;
  color: white;
}

.socials .link.twitter {
  background-color: #00ACEE;
  color: white;
}

.socials .link.facebook {
  background-color: #3B5998;
  color: white;
}
.socials .link.instagram{
  background-color: #3B5998;
  color: white;
}




