/* Slide deck styling */
.reveal {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.2em;
  }
  
  /* Slide background colors */
  .reveal section {
    background-color: #ffffff;
  }
  
  .reveal section:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  /* Header styling */
  .reveal h1 {
    font-size: 2em;
    color: #2f2f2f;
    margin-bottom: 0.5em;
  }
  
  /* Body text styling */
  .reveal p {
    font-size: 1.2em;
    color: #5f5f5f;
    line-height: 1.5;
    margin-bottom: 1.5em;
  }
  
  /* Link styling */
  .reveal a {
    color: #d83a3a;
    text-decoration: none;
    border-bottom: 2px solid #d83a3a;
    transition: border-color 0.2s ease-in-out;
  }
  
  .reveal a:hover {
    border-color: #c41c1c;
  }
  
  /* Bullet point styling */
  .reveal ul {
    list-style: disc;
    margin-bottom: 1.5em;
  }
  
  .reveal ul li {
    font-size: 1.2em;
    color: #5f5f5f;
    line-height: 1.5;
    margin-left: 1.5em;
  }
  
  /* Code block styling */
  .reveal code {
    font-size: 1.2em;
    color: #d83a3a;
    background-color: #f2f2f2;
    padding: 0.2em 0.4em;
    border-radius: 0.2em;
  }
  
  /* Image styling */
  .reveal img {
    max-width: 100%;
    height: auto;
  }
  
  /* Header bar styling */
  .reveal .progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background-color: #2f2f2f;
  }
  
  .reveal .progress span {
    height: 100%;
    background-color: #d83a3a;
    display: block;
  }
  
  /* Slide transition styles */
  .reveal .slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .reveal .slide:not(.stack) {
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }
  
  .reveal .slide:not(.stack).visible {
    transform: scale(1);
    opacity: 1;
  }
  
  .reveal .slide:not(.stack) .fragment {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .reveal .slide:not(.stack) .fragment.visible {
    opacity: 1;
  }
  
  /* Theme colors */
  .reveal {
    --theme-color: #d83a3a;
    --text-color: #2f2f2f;
    --background-color: #ffffff;
    --header-background-color: #f2f2f2;
    --link-color: #d83a3a;
    --code-background-color: #f2f2f2;
    --progress-color: #d83a3a;
  }
  
  /*
  