.xmas-toy {
    position: absolute;
    top: 200px;
    right: 180px;
    width: 80px;
    height: 80px;
    background-image: url(../img/toy.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.xmas-toy:hover {
    transform: scale(1.1);
}
