﻿/* wwwroot/css/christmas-bar.css */

.christmas-bar {
    /*background-color: #c00000;*/
    background-color: #3b465e;
     color: white;
    height: 55px;
    max-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-bottom: 3px solid #fff;
}

.snowflake {
    position: absolute;
    top: -10px;
    font-size: 1.5rem;
    animation: fall 5s linear infinite;
}

    .snowflake:nth-child(1) {
        left: 10%;
        animation-delay: 0s;
    }

    .snowflake:nth-child(2) {
        left: 50%;
        animation-delay: 2s;
    }

    .snowflake:nth-child(3) {
        left: 80%;
        animation-delay: 4s;
    }

@keyframes fall {
    0% {
        top: -10px;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 60px;
        opacity: 0;
    }
}
