: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 2rem 2rem;
    border-radius: var(--mba-border-radius);
    background: var(--mba-bg-darker);
    box-shadow: var(--mba-box-shadow);
}

.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%;
}

/*
 * Remove hardcoded max-height:400px on code snippets
 * Add spacing around code
 * Smooth edges
 */
.reveal .slides pre code {
    max-height: initial;
    padding: 1rem;
    border-radius: var(--mba-border-radius);
}

.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;
}