body {
    background-color: pink;
    margin-top: 30px;
    
}

h1{
    text-align: center;
    font-family: 'Gloria Hallelujah', cursive;
}

h2{
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}

#message{
    margin-top: 70px;
}

#message img{
    border: solid 8px black;
    border-radius: 5px;
    text-align: center;
}



li{
    
    border: solid 2px;
    border-radius: 5px;
    padding: 10px;
    font-size: 23px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    list-style-type: none;
    font-family: 'Dancing Script', cursive;


}

.cake {
    width: 200px;
    height: 100px;
    background-color: #f3a683;
    border-radius: 50px 50px 0 0;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.candle {
    width: 10px;
    height: 50px;
    background-color: #fff;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.1);
}

.flame {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid #ff6b6b;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    border-radius: 50%;
}

@keyframes flicker {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(0.9); }
}

.flame.animate {
    animation: flicker 0.2s infinite alternate;
}