.night {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.shooting_star {
    position: absolute;
    height: 2px;
    background: linear-gradient(-45deg, rgba(255, 182, 193, 1), rgba(255, 105, 180, 0));
    border-radius: 999px;
    filter: drop-shadow(0 0 6px rgba(255, 155, 193, 1));
    animation: tail 3000ms ease-in-out infinite, shooting 3000ms ease-in-out infinite;
    transform: rotate(45deg);
}

.shooting_star::before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    height: 2px;
    background: linear-gradient(-45deg, rgba(255, 105, 180, 0), rgba(255, 182, 193, 1), rgba(255, 105, 180, 0));
    transform: translateX(50%) rotateZ(45deg);
    border-radius: 100%;
    animation: shining 3000ms ease-in-out infinite;
    animation-delay: inherit;
}

.shooting_star::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    height: 2px;
    background: linear-gradient(-45deg, rgba(255, 105, 180, 0), rgba(255, 182, 193, 1), rgba(255, 105, 180, 0));
    border-radius: 100%;
    animation: shining 3000ms ease-in-out infinite;
    animation-delay: inherit;
    transform: translateX(50%) rotateZ(-45deg);
}

@keyframes tail {
    0% {
        width: 0;
    }
    30% {
        width: 100px;
    }
    100% {
        width: 0;
    }
}

@keyframes shining {
    0% {
        width: 0;
    }
    50% {
        width: 30px;
    }
    100% {
        width: 0;
    }
}

@keyframes shooting {
    0% {
        transform: translate(0, 0) rotate(45deg);
    }
    100% {
        transform: translate(300px, 300px) rotate(45deg);
    }
}
