body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.social-buttons {
  display: flex;
  flex-direction: column; /* Masaüstü düzeni */
  position: fixed;
  left: 10px; /* Masaüstü sol kenar boşluğu */
  bottom: 217px; /* Masaüstü alt kenar boşluğu */
   z-index: 999; /* Yüksek bir z-index değeri */
}

@media (max-width: 600px) {
  /* Mobil tarayıcı için düzen */
  .social-buttons {
    flex-direction: row;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-around;
        background-color: rgba(33, 150, 243, 0.5);
  }
}

.social-buttons a {
  display: inline-block;
  text-decoration: none;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
   z-index: 999; /* Yüksek bir z-index değeri */
}

.social-buttons a img {
  width: 40px; /* Resim boyutunu istediğiniz gibi ayarlayabilirsiniz */
  height: 40px; /* Resim boyutunu istediğiniz gibi ayarlayabilirsiniz */
}






.social-buttons a:hover {
  background-color: #2980b9;
}
