/* CSS */
.portfolio-button {
    align-items: center;
    appearance: none;

    background-image: radial-gradient(100% 100% at 100% 0, rgb(217, 207, 194) 0, rgba(243, 226, 202, 0.71) 100%);
    border: 0;
    border-radius: 6px;
    box-sizing: border-box;
    color: #453f38;

    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;

    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    font-size: 28px;
}

.portfolio-button:focus {
}

.portfolio-button:hover {
}

.portfolio-button:active {
    box-shadow: rgba(44, 40, 36, 0.2) 0 3px 7px inset;
    /*transform: translateY(2px);*/
}