
.atom-button {
    box-sizing: border-box;
    border-radius: 8px;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    user-select: none;
    overflow: hidden;

    box-shadow: 0px 2px 5px rgb(0, 0, 0, .15);
}

.atom-button-button {

    width: calc(100% - 16px);
    height: calc(100% - 16px);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 10px;
    cursor: pointer;
    outline: none;
    color: inherit;
    background-color: transparent;
    border:none;
    margin: 8px;
}

.atom-resizer:hover + .atom-button {
    background-color: black;

}

.atom-button:active {
    transform:scale(0.95);
}
