.reveal ul.naked {
  list-style-type: none;
}

.reveal .grid2{
  display: grid;
  grid-template-columns: repeat(2,50%);
  grid-template-rows: repeat(1, auto);
  justify-content: center;
  gap: 0px;
}

.grid2>ul{
  width: 100%;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(2, 45%);
  grid-template-rows: repeat(2, auto);
  justify-content: center;
  /* centers the two 40% columns */
  align-items: center;
  gap: 0px;
  /* spacing between images */
}

.grid4>img {
  width: 100%;
  /* fill the grid cell */
  height: auto;
  /* keep aspect ratio */
  object-fit: cover;
  /* or "contain" if you want full image visible */
  border-radius: 8px;
  display: block;
  margin: 0px;
}

.flow3{
  display: grid;
  grid-template-columns: repeat(3, 30%);
  justify-content: center;
  align-items: center;
  gap: 0px;
}
.reveal img.fit-height {
  max-height: 60vh;
}

.reveal .no-gap {
  margin: 0;
}

.reveal .icon {
  height: 1em;
  width: auto;
  vertical-align: -0.15em;
}

.reveal section.big {
  height: 60vh;
}

.reveal .big .gd_slide{
  width: 100%;
  aspect-ratio: 16 / 9;
}

.reveal section.big pre {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.reveal section.big code {
  max-height: 600px;
}

.reveal section.max {
  height: 70vh;
}

.reveal section.max pre {
  margin: 0;
  width: 100%;
  height: 100%;
}

.reveal section.max code {
max-height: 70vh;
}

.reveal p.smol {
  margin: 0;
  font-size: large;
}

.pixelated {
  image-rendering: pixelated;
}

.reveal code {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding-inline: 10px;
}

/* Expand code in PDF mode for copying */
.print-pdf pre code {
  max-height: none !important;
}

.reveal .normal-case{
  text-transform: none;
}