.share-button-container {
  display: flex;
  justify-content: center;
  align-items: center;   
  flex-direction: column;
  width: 100%;
} 

.share-buttons {
display: flex;
align-items: center;
gap: 20px;
}

.share-buttons a, .share-buttons button {
text-decoration: none;
border: none;
cursor: pointer;
  transition: transform 0.3s ease;
}

.share-buttons a:hover {
  transform: scale(1.2);
}