.particle-snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none
}

.particle-snow canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.christmas-garland {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    padding: 0;
    pointer-events: none;
    width: 100%;
    height: 85px
}

.christmas-garland .christmas-garland__item {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 20px
}

.christmas-garland .christmas-garland__item .shape {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: flash-1;
    animation-name: flash-1;
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.christmas-garland .christmas-garland__item .apple {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px
}

.christmas-garland .christmas-garland__item .pear {
    width: 12px;
    height: 28px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6px
}

.christmas-garland .christmas-garland__item:nth-child(2n+1) .shape {
    -webkit-animation-name: flash-2;
    animation-name: flash-2;
    -webkit-animation-duration: .4s;
    animation-duration: .4s
}

.christmas-garland .christmas-garland__item:nth-child(4n+2) .shape {
    -webkit-animation-name: flash-3;
    animation-name: flash-3;
    -webkit-animation-duration: 1.1s;
    animation-duration: 1.1s
}

.christmas-garland .christmas-garland__item:nth-child(odd) .shape {
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s
}

.christmas-garland .christmas-garland__item:nth-child(3n+1) .shape {
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s
}

.christmas-garland .christmas-garland__item:before {
    content: "";
    position: absolute;
    background: #222;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    top: -1px;
    left: 9px
}

.christmas-garland .christmas-garland__item:after {
    content: "";
    top: -9px;
    left: 14px;
    position: absolute;
    width: 52px;
    height: 18px;
    border-bottom: solid #222 2px;
    border-radius: 50%
}

.christmas-garland .christmas-garland__item:last-child:after {
    content: none
}

.christmas-garland .christmas-garland__item:first-child {
    margin-left: -40px
}