/* schub.css – Styling für das Video schub.mp4 und optional rundes Logo */

.gallery-video-wrapper {
  width: 300px;
  height: 450px;
  margin: 0 auto;
  margin-top: 10px;
  cursor: url('../images/mine.png'), auto;
  border: 2px solid #eee;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-video-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

/* Optional: rundes Logo für experimentellen Look */
.logo {
  border-radius: 50%;
  object-fit: cover;
  width: 60px;
  height: 60px;
}