/*@import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css');*/


a {
    color: whitesmoke;
    font-weight: bold;
}
a:hover,  a:focus {
    color: #100d0d;
    /*border-bottom: 1px dashed #bc9d88;*/
    text-shadow: 2px 2px 8px #620404;
    transition: all 0.5s ease;
}

button.neumorphic {
    /*container-type: inline-size;*/
    aspect-ratio: 1/1;
    border: .1rem solid transparent;
    border-radius: 1rem;
    color: hsl(0, 90%, 49%);
    background: #979797;
    margin: .6rem;
    padding: 5px;

    /*display: grid;*/
    place-content: center;
    gap: 1rem;
    text-decoration-color: #0b0b0b;
    --shadow:
            -.5rem -.5rem 1rem hsl(0 0% 100% / .55),
            .5rem .5rem 1rem hsl(0 0% 100% / .55);
    box-shadow: var(--shadow);
    outline: none;
    transition: all 0.2s;

    &:hover, &:focus-visible {
        background: #e1e1dc;

        box-shadow:
                var(--shadow),
                inset .5rem .5rem 1rem hsl(0 0% 100% / .5),
                inset -.5rem -.5rem 1rem hsla(0, 4%, 26%, 0.75);
        text-align: center;
        color: hsl(0 0% 10%);
        font-family: system-ui, sans-serif;
        font-size: 1rem;
        /*color: hsl(10 80% 50%);*/
        scale: 1.1
    }
    &:active, &.active{
        box-shadow:
                var(--shadow),
                inset .5rem .5rem 1rem hsl(0 0% 50% / .5),
                inset -.5rem -.5rem 1rem hsl(0 0% 100% / .75);
        color: hsl(10 80% 50%);
        > i { font-size: 28cqi};
        > span { font-size: 13cqi};
    }

    >i {
        font-size: 31cqi;
    }
    > span {
        font-family: system-ui, sans-serif;
        font-size: 16cqi;
    }
}


.buttons {
    display: table;
    white-space: nowrap;
    /*width: min(50rem, 100%);*/
    margin-inline: auto;
    grid-template-columns: repeat(auto-fit, minmax(min(8rem, 100%), 1fr));
    gap: 2rem;
    margin: auto;
}


