*{
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
}
body{
    background: #010108;
}  

.wrapper{
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.red{
    width: 80px;
    height: 80px;
    background: #ff4500;
    box-shadow: 0px 0px 10px 5px #ff4500;
}

.orange{
    left: 10px;
    width: 60px;
    height: 60px;
    background: #ffa500;
    box-shadow: 0px 0px 12px 6px #ffa500;
}

.gold{
    left: 18px;
    width: 45px;
    height: 45px;
    background: #ffd700;
    box-shadow: 0px 0px 9px 4px #ffd700;
}

.white{
    left: 22px;
    width: 35px;
    height: 35px;
    background: #ffffe0;
    box-shadow: 0px 0px 9px 4px #ffffe0;
}
.blue{
    left: 32px;
    width: 15px;
    height: 15px;
    background: #00008b;
    box-shadow: 0px 0px 15px 10px #00008b;
}

.black{
    left: 20px;
    width: 40px;
    height: 40px;
    bottom: -50px;
    background: #000000;
    box-shadow: 0px 0px 15px 10px #000000;
}

.base{
    border-radius: 50%;
    position: absolute;
}

.flame-wrapper{
    position: relative;
    animation: flicker 30ms ease infinite;
}

.flame{
    bottom: 0;
    position: absolute;
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
    
}

@keyframes flicker{
    0%{transform: rotate(-1deg);}
    20%{transform: rotate(2deg) scaleY(1.05);}
    40%{transform: rotate(-1deg);}
    60%{transform: rotate(1deg);}
    80%{transform: rotate(-1deg) scaleY(0.90);}
    100%{transform: rotate(1deg);}
}
