.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
	margin-top: 15px 0px;
}

.bar {
    width: 80px;
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.bar span {
    position: absolute;
    bottom: 10px;
    font-size: 16px;
}

#bar2 {
    height: 75px;
    background: linear-gradient(to bottom, #F0CF65 0%, #ebc137 100%);
}
#bar1 {
    height: 100px;
    background: linear-gradient(to bottom, #BD4F6C 0%, #9e3b55 100%);
}
#bar3 {
    height: 50px;
    background: linear-gradient(to bottom, #5E9EAD 0%, #49828f 100%)
}

#treeSave {
    text-align: center !important;
    vertical-align: middle !important;
    font-weight: 500;
    color: #01467F;
    font-size: 5rem;
}

@media (max-width: 600px) {

    .bar {
        width: 50px;
    }
    #bar2 {
        height: 40px;
    }
    #bar1 {
        height: 80px;
    }
    #bar3 {
        height: 60px;
    }

    #treeSave {
        font-size: 3rem !important;
        margin-top: 40px;
    }
}