body {
    background: #000;
    overflow: hidden;
}

.container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background-color: #000;
}

.fire {
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    border-radius: 45%;
    box-sizing: border-box;
    border: 200px solid #000;
    border-bottom: 200px solid #b5932f;
    transform: translate(-50%, 0) scaleX(.4);
    filter: blur(20px) contrast(30);
}

.dot {
    position: absolute;
    bottom: -110px;
    left: 0;
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
}



@keyframes move {
    100% {
        transform: translateY(-350px);
    }
}