body {
    background: #0d1117;
    color: #f5f5f5;
    font-family: "Segoe UI", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.hero {
    text-align: center;
}

.highlight {
    color: #4cc9f0;
}

.candles {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 2rem;
    gap: 10px;
    height: 120px;
}

.candle {
    width: 15px;
    background: #00ff88;
    border-radius: 3px;
    animation: grow 1.2s infinite ease-in-out;
}

.candle:nth-child(2) {
    animation-delay: 0.2s;
}
.candle:nth-child(3) {
    animation-delay: 0.4s;
}
.candle:nth-child(4) {
    animation-delay: 0.6s;
}
.candle:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes grow {
    0%, 100% {
        height: 20px;
    }
    50% {
        height: 100px;
    }
}
