#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow interactions with content below */
    z-index: 9999; /* Ensure it appears above the content */
}

.santa {
    position: fixed;
    top: 20%;
    left: -20%; /* Start off-screen */
    width: 200px;
    animation: santaTravel 10s linear infinite;
    z-index: 10000;
}

@keyframes santaTravel {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(120vw); /* Move out of screen */
    }
}

.christmas-tree {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 150px;
    z-index: 1000;
}

.Christmas-bell{
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    z-index: 1000;
}

.right-top{
    position: fixed;
    top: 0;
    right: 0;
    width: 100px;
    z-index: 1000;
}

.right-bottom{
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 150px;
    z-index: 1000;
}

.gifts {
    position: fixed;
    bottom: 20px;
    left: 180px;
    display: flex;
    gap: 0;
    z-index: 1000;
}

.gift {
    width: 100px;
}
