body {
    margin: 0;
    overflow: hidden;
}
#snow-leopard {
    position:absolute;
    top: 80%;        
    left: 50px;
}
#leopard {
    width: 150px;
    height: auto;
    position: absolute; /* Добавляем позиционирование */
    transition: ease-out;
}
@keyframes scale-up {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.5); }
    100% { transform: scale(1); }
}

.leopard-animated {
    animation: scale-up 7s ease-in-out forwards;
}

#message {
    position: absolute;
    min-width: 150px;
    padding: 10px 20px;
    background: rgba(99, 53, 121, 0.7);
    color: white;
    font-size: 18px;
    border-radius: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

