﻿
.flame{
	width:20px;
	height:20px;
	background:linear-gradient(-45deg, red, orange);
	border-radius: 20px 20px 0px 20px;
	transform:rotate(-135deg);
	animation:.8s flame infinite;
	filter:blur(1px);
	position:relative;
   animation-delay: 2s;
	
}
.text-muted {
	
	color: gray;
}
.text-muted-bold {
	font-weight: bold;
	color: gray;
}
@keyframes flame{
  0% {height:20px; width:20px;}
  50% {height:18px; width:18px;}
    100% {height:20px; width:20px;}
}

