:root {
    --r-heading1-size: 2.7em;
    --r-heading2-size: 1.5em;
    --r-heading-font: Palatino Linotype, Book Antiqua, Palatino, FreeSerif, serif;
    --r-inline-code-color: #ddd;
    --mba-border-radius: 5px;
    --mba-bg-darker: rgba(0, 0, 0, 0.05);
    --mba-bg-lighter: rgba(255, 255, 255, 0.15);
    --mba-box-shadow: 0.15rem 0.15rem 0.5rem rgba(0, 0, 0, 0.15), -0.15rem -0.15rem 0.5rem rgba(0, 0, 0, 0.15);
    --mba-border-color: rgba(0, 0, 0, 0.15);
}

.reveal .slides h1 {
    position: relative;
    top: 255px;
    text-align: center;
}

.reveal .slides h2 {
    text-align: left;
    padding: 1rem 2rem 1rem 2rem;
    border-radius: var(--mba-border-radius);
    background: var(--mba-bg-darker);
    box-shadow: var(--mba-box-shadow);
}


.reveal .slides .title-meme h2{
    --shadow-color: black;
    --text-color: white;

    padding: 0;
    background: none;
    box-shadow: none;

    color: var(--text-color);
    text-transform: uppercase;
    text-shadow: .04em .04em 0 var(--shadow-color),
    -.04em -.04em 0 var(--shadow-color),
    .04em -.04em 0 var(--shadow-color),
    -.04em .04em 0 var(--shadow-color),
    0 .04em 0 var(--shadow-color),
    .04em 0 0 var(--shadow-color),
    0 -.04em 0 var(--shadow-color),
    -.04em 0 0 var(--shadow-color),
    .04em .04em .25rem var(--shadow-color);
    letter-spacing: -.25rem;
    text-align: center;
    margin: 0;
    font-size: 2.5em;
    font-family: sans-serif;
    font-weight: bolder;
}


.reveal .slides .slide-content {
    text-align: left;
}

.reveal .slides .slide-content .imageblock {
    text-align: center;
}

.reveal .slides .slide-content img {
    max-height: 500px;
}

.reveal .slides blockquote {
    padding: 0.25rem 1rem;
    background: var(--mba-bg-lighter);
    border-radius: var(--mba-border-radius);
    box-shadow: none;
    border: solid 0.15rem var(--mba-border-color);
    border-left: solid 0.4rem var(--mba-border-color);
    width: 85%;
}

/*
 * Add spacing around code
 * Smooth edges
 */
.reveal .slides pre code {
    padding: 1rem;
    border-radius: var(--mba-border-radius);
}


/*
 * Add spacing around code
 * Smooth edges
 */
.reveal .slides .code-long pre code {
    max-height: initial;
}

.reveal .footnotes {
    margin-top: 2rem;
}

.text-white {
    color: #fff !important;
}

.text-white h2 {
    color: #fff !important;
}

.no-title-box h2 {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

.reveal .slides .text-center h2,
.text-center {
    text-align: center !important;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-8 {
    margin-top: 8rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.align-middle {
    position: relative;
    top: 255px;
}

.h2 {
    font-size: var(--r-heading2-size);
}

/*
 * In a step, we want the item visible and then striking it on the step activation
 */
.fragment.styled.step {
    visibility: inherit;
    opacity: inherit;
}

.fragment.step.line-through {
    text-decoration: none;
    visibility: inherit;
    opacity: inherit;
}

.fragment.step.line-through.visible,
.fragment.styled.step.visible.line-through {
    text-decoration: line-through;
}

.fragment.styled.step.underline.visible {
    text-decoration: underline;
}

.text-smaller {
    font-size: smaller;
}

.text-small {
    font-size: small;
}

.text-medium {
    font-size: medium;
}


.text-large {
    font-size: large;
}

.text-x-large {
    font-size: x-large;
}

.text-xx-large {
    font-size: xx-large;
}
.admonitionblock {
    font-family: sans-serif;
    border-radius: 25px;
    margin: .5rem 0;
}

.admonitionblock table {
    border: none;
}

.admonitionblock table .content .title {
    font-weight: bold;
}

.admonitionblock.caution {
    background-color: rgba(238, 0, 255, 0.20);
}

.admonitionblock.warning {
    background-color: rgba(255, 183, 0, 0.30);
}

.admonitionblock.note {
    background-color: rgba(0, 255, 247, 0.3);
}

.admonitionblock.important {
    background-color: rgba(255, 98, 0, 0.25);
}

.admonitionblock.tip {
    background-color: rgba(0, 255, 60, 0.3);
}

.exampleblock {
    border-color: darkgray;
    border-style: groove;
    border-radius: 1rem;
    border-width: thick;
    padding: 0 1em;
    background-color: white;
}

.pre-wrap code{
    white-space: pre-wrap !important;
}

.Connect