/* Big Caslon :
    font-family: big-caslon-fb, serif
    font-weight: 400, 700, 800
    font-style: normal, italic

Proxima Nova : 
    font-family: proxima-nova, serif
    font-weight: 300, 400, 600, 700, 900
    font-style: normal, italic

Miller Text :
    font-family: "miller-text", serif;
    font-weight: 400, 700;
    font-style: normal, italic;
*/



.smcps {
    font-variant: small-caps;
}


.smallLink {
    display: inline-block;
    position: relative;
    border-radius: 10px;
    padding: 3px 6px;
    background: var(--purple2);
    color: var(--white2);
    text-decoration: none;
    font-size: 1em;
    font-weight: 400;
    transition: all 250ms ease-in;
    margin: 20px auto;
    text-align: center;
}

.smallLink::before {
    content: '→ ';
    font-size: 1.1em;
    position: absolute;
    opacity: 0%;
    top: 0px;
    left: -20px;
    transition: all 200ms ease-out;
}

.smallLink:hover {
    text-decoration: underline;
    text-indent: 25px;
}

.smallLink:hover::before {
    opacity: 100%;
    left: -20px;
}

.wrap-balance {
    text-wrap: balance;
}