/* Общий стиль */
body {
  margin: 0;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Контейнер-ссылка */
.logo {
  opacity: 0;
  transform: scale(0.8);
  animation: fadeIn 1.2s ease-out forwards;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: inline-block;
}

/* Само изображение логотипа */
.logo img {
  width: 600px;
  height: auto;
  display: block;
  pointer-events: none; /* чтобы не мешал hover */
}

/* Наведение — эффект только на контейнер */
.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
  cursor: pointer;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
