.bg-primary {
	background-color: #ef7715!important;
}

.treppchen-container {
            text-align: center;
        }
        .treppchen {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin: 0 auto;
        }
        .platz {
            background-color: #3498db;
            color: white;
            text-align: center;
            padding: 5px;
            position: relative;
	    flex-grow: 1;
        }
        .platz1 {
	    background-color: #ef7715;
            height: 100px; /* Größte Höhe für Platz 1 */
            min-width: 60px; /* Mindestbreite für Platz 1 */
        }
        .platz2 {
            height: 60px; /* Kleinere Höhe für Platz 2 */
            min-width: 60px; /* Mindestbreite für Platz 2 */
        }
        .platz3 {
            height: 60px; /* Kleinste Höhe für Platz 3 */
            min-width: 60px; /* Mindestbreite für Platz 3 */
        }
        .emoji {
            position: absolute;
            font-size: 48px; /* Größe des Emoji */
            top: -60px; /* Position über Platz 1 anpassen */
            left: 50%; /* Zentrierung über Platz 1 */
            transform: translateX(-50%);
        }
