.socialmedia {
  top: 50%;
  left: 95%;
  position: fixed;
  z-index: 10000;
  background: #303030;
  display: block;
}

li {
  list-style: none;
}

.items {
  display: block;
}

.items li:hover {
  transition: 0.3s linear;
  transform: scale(1.1);
}

.items img {
  width: 40px;
  height: 40px;
  padding: 2px;
}

.items li {
  text-align: left;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media screen and (max-width: 700px) {
  .socialmedia {
    display: none;
  }
}
