.logo-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.small-logo {
  width: 48px;
  height: 48px;
}

.logo-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.maskot-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.maskot-image {
  width: 90%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.maskot-image:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
