@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic');
@import url('https://fonts.googleapis.com/css?family=Fira+Mono:400,700');
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css?family=Bree+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  background-color: #FDE0C5;
  color: #1A1F4D;
}

#title-slide .title {
  color: red;
}

@media print {
  body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
  }
}
@page { margin: 0; }

.rounded-box {
  background-color: #f8f9fa; /* Light background color */
  border: 1px solid #dee2e6;  /* Subtle border */
  border-radius: 12px;      /* Adjust for desired roundness */
  padding: 20px;            /* Spacing inside the box */
  margin-bottom: 20px;      /* Spacing below the box */
}

/* Ragged border */
.bulletproof-torn-paper {
  /* Complex polygon creating tight, organic paper shreds */
  clip-path: polygon(
    0% 4%, 4% 1%, 11% 5%, 18% 0%, 26% 3%, 31% 1%, 40% 4%, 48% 0%,
    57% 5%, 63% 1%, 72% 4%, 79% 0%, 86% 3%, 93% 1%, 100% 5%,
    99% 14%, 96% 23%, 100% 34%, 97% 45%, 99% 56%, 96% 68%, 100% 79%, 97% 91%, 99% 100%,
    92% 97%, 84% 100%, 76% 96%, 69% 99%, 60% 96%, 52% 100%, 43% 97%, 35% 99%, 27% 96%, 19% 100%, 11% 96%, 0% 99%,
    2% 88%, 0% 77%, 4% 65%, 1% 53%, 3% 41%, 0% 29%, 3% 16%
  );

  /* Create a paper-like subtle drop shadow */
  filter: drop-shadow(4px 6px 8px rgba(0, 0, 0, 0.25));

  /* Prevents RevealJS from stretching or overriding the dimensions abruptly */
  object-fit: cover;
}

/* Alternate Color Table*/
.custom-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.6em !important;
}
/* Style the Header */
.custom-table th {
  background-color: #1f4e78 !important; /* Dark Blue */
  color: white !important;
  font-weight: bold;
  padding: 12px;
}
/* Style Alternating Rows */
.custom-table tr:nth-child(even) {
  background-color: #f2f2f2; /* Light Gray */
}
.custom-table tr:nth-child(odd) {
  background-color: #ffffff; /* White */
}
/* Style cell padding */
.custom-table td {
  padding: 10px;
}
