body {
  background-color: #1d1d1f; /* A kép alapján sötétszürke háttér */
}

.social-icons {
  text-align: left;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 20px 0;
}

.social-icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 174, 239, 0.15); /* halvány #00aeef */
  border-radius: 12px;
  width: 45px;
  height: 45px;
  color: #00aeef;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons .icon:hover {
  background-color: #00aeef;
  color: #fff;
}