@keyframes beat-fade {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

img.hero {
    height: auto;
    width: auto;
    max-width: 400px;
    min-width: 220px;
    object-fit: contain;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

.intro-section {
    text-align: center;
    margin-bottom: 30px;
}

img[data-zoomable] {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.lightbox {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999 !important;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox--open {
    display: flex !important;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.3s ease-in-out;
}



[data-md-color-scheme="default"] {
  --md-primary-fg-color: #004263;
  --md-primary-fg-color--light: #4b9cd3;
  --md-primary-fg-color--dark: #004263;
}
[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #004263;
  --md-primary-fg-color--light: #4b9cd3;
  --md-primary-fg-color--dark: #004263;
  --md-code-bg-color: #151B23; /* sets code block background */
  --md-default-bg-color: #0D1117; /* sets main page background */
}
[data-md-color-scheme="slate"] .md-header,
[data-md-color-scheme="slate"] .md-tabs1 {
  background-color: #262b60 !important;
}

[data-md-color-scheme="default"] .md-header,
[data-md-color-scheme="default"] .md-tabs1 {
  background-color: #262b60 !important;
}
[data-md-color-scheme="default"] .md-header__inner,
[data-md-color-scheme="default"] .md-search__button {
  color: #ffffff !important;
}

[data-md-color-scheme="default"] .md-search__button:before,
[data-md-color-scheme="default"] .md-search__button:after {
  background-color: #ffffff !important;
  color: var(--md-default-fg-color) !important;
}

.hero-card {
  background-color: var(--md-code-bg-color);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 0 0 1rem 0;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media screen and (max-width: 59.9375em) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-text {
    width: 100%;
    text-align: left;
  }
  
  .hero {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: flex-start;
  }
}



.hero-card p {
  font-size: 1.0rem;
  line-height: 1.6;
}

@keyframes heart {

  0%,
  40%,
  80%,
  100% {
    transform: scale(1);
  }

  20%,
  60% {
    transform: scale(1.15);
  }
}

.mdx-heart {
  animation: heart 1000ms infinite;
}

.mdx-columns ol,
.mdx-columns ul {
  columns: 2;
}

@media screen and (max-width: 29.9844em) {
  .md-typeset .mdx-columns ol,
  .md-typeset .mdx-columns ul {
    columns: initial;
  }
}

.mdx-columns li {
  break-inside: avoid;
}

.mdx-switch button {
  cursor: pointer;
}

.mdx-flags {
  margin: 2em auto
}

.md-typeset .mdx-flags ol {
  list-style: none
}

.md-typeset .mdx-flags ol li {
  margin-bottom: 1em
}

.md-typeset .mdx-flags__item {
  display: flex;
  gap: .6rem
}

.md-typeset .mdx-flags__content {
  display: flex;
  flex: 1;
  flex-direction: column
}

.md-typeset .mdx-flags__content span {
  align-items: baseline;
  display: inline-flex;
  justify-content: space-between
}

.md-typeset .mdx-flags__content>span:nth-child(2) {
  font-size: 80%
}

.md-typeset .mdx-flags__content code {
  float: right
}