body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url(images/banner_3.jpg) no-repeat;
  background-size: cover;
}

.sosial {
  position: fixed;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translate(-250px, 0);
  z-index: 999;
}

.sosial a {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin: 5px;
  padding: 20px;
  width: 300px;
  text-align: right;
  border-radius: 50px;
  transition: 1s;
  transition-property: transform;
}

.sosial a:hover {
  transform: translate(140px, 0);
}

.sosial i {
  margin-left: 10px;
  font-size: 30px;
  width: 30px;
  height: 30px;
}

.sosial a:nth-child(1) i {
  color: #1da0f0;
}

.sosial a:nth-child(3) i {
  color: transparent;
  background-image: linear-gradient(45deg, #ffdf9e, #e56969, #8a49a1);
  -webkit-background-clip: text;
  font-weight: 600;
}

.sosial a:nth-child(2) i {
  color: #f80000;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .sosial {
    display: none;
  }
}
