.write {
  position: fixed;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.write span {
  color: #222;
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
}
.write a {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.write a:nth-child(2) {
  margin: 4px 0 12px;
}
@keyframes shadows {
  60% {
    text-shadow: 0 0 0 crimson;
  }
  90% {
    text-shadow: 0 30px 40px transparent;
  }
  100% {
      text-shadow: 0 0 0 transparent;
  }
} 