/* =========================================================
   BOTTOM BAR
   ========================================================= */

#bottom-bar {
    display: flex;

    flex-direction: row;

    align-items: center;
    justify-content: flex-end;

    flex: 0 0 150px;

    width: 100%;
    height: 150px;

    padding-left: 100px;
    padding-right: 100px;

    text-align: center;

    background-color: var(--glass-dark-solid);
}

#frog-container {
    position: relative;
    width: 100%;
    height: 150px;
    min-width: 0;
}

#click-me {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 90px;
    cursor: pointer;
    transition: transform 0.1s ease;
    will-change: transform;
}

#click-me:hover {
    transform: scale(1.05);
}

#click-me:active {
    transform: scale(0.95);
}

#click-me.flipped {
    transform: scaleX(-1);
}