:root {
    --shadow: -6px -6px 8px white,
               6px 6px 8px var(--gray80);
    --shadow-hover: -4px -4px 8px white,
                     4px 4px 8px var(--gray80);
}

body {
    color: var(--gray40);
}
hr {
    flex-grow: 0;
    flex-shrink: 1;
    display: inline-block;
    width: 70ch;
    margin: var(--md) auto var(--md) auto;
    height: 5px;
    border: none;
    box-shadow: var(--shadow);
    border-radius: 15%;
    padding: 0px;
}
h1, h2, h3 {
    color: var(--gray40);
}
.text-shadow {
    text-shadow: var(--shadow);
}
.box-shadow {
    box-shadow: var(--shadow);
}
a.box-shadow:hover {
    box-shadow: var(--shadow-hover);
}
button.box-shadow:hover {
    box-shadow: var(--shadow-hover);
}
.sqr-sm {
    width: 110px;
    height: 90px;
    text-align: center;
    padding: 12px 10px;
}
.social {
    margin-top: 3em;
}
.bento {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
}
.bento > a {
    box-shadow: var(--shadow);
    text-decoration: none;
    padding: 2rem;
    border-radius: var(--lg);
    font-weight: bold;
}

.slider {
    display: grid;
    gap: 1em;
    grid-template-columns: auto minmax(0, 1fr) auto;
}


@media screen and (max-width: 1096px) {
    .flex-row {
        flex-direction: column;
    }
    .social {
        flex-direction: row;
        margin-top: 0.5em;
    }
}
@media screen and (max-width: 748px) {
    .tx-jumbo {
        font-size: 6em;
    }
    body > header > div:first-of-type {
        text-align: center;
        margin-left: 0px;
    }
}