.dev {
    max-width: 64rem;
    margin: 0 auto;
}

/* .wab-button {
--wab-background: hsla(129, 62%, 44%, 1);
--wab-background-focus: hsla(129, 62%, 50%, 1);
--wab-color: white;
} */

.wab-icon {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background-color: hsla(129, 62%, 44%, 1);
    border-radius: 100%;            
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.dev:hover .wab-icon__image{
    transform: scale(1.1);
}

.wab-icon__image {
    width: 30px;
    height: 25px;
    top: 20px;
    transition: all 0.2s;
}

.wab-button {
    background-color: var(--wab-background);
    color: var(--wab-color);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25em;
    cursor: pointer;
}

.wab-button:hover,
.wab-button:focus-within {
    background-color: var(--wab-background-focus);
}