﻿
.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;}
}

.dev-easter-egg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.dev-easter-egg.hidden {
    display: none;
}

.dev-card {
    background: white;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    animation: popIn 0.25s ease-out;
}

.dev-card img {
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 12px;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}