/**
 * Any CSS included here will be global. The classic template
 * bundles Infima by default. Infima is a CSS framework designed to
 * work well for content-centric websites.
 */

/* You can override the default Infima variables here. */
:root {
  --ifm-color-primary: #00d3f2;
  --ifm-color-primary-dark: #00b8db;
  --ifm-color-primary-darker: #0092b8;
  --ifm-color-primary-darkest: #007595;
  --ifm-color-primary-light: #53eafd;
  --ifm-color-primary-lighter: #a2f4fd;
  --ifm-color-primary-lightest: #cefafe;
  --ifm-code-font-size: 95%;
  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
  --ifm-color-primary: #00d3f2;
  --ifm-color-primary-dark: #00b8db;
  --ifm-color-primary-darker: #0092b8;
  --ifm-color-primary-darkest: #007595;
  --ifm-color-primary-light: #53eafd;
  --ifm-color-primary-lighter: #a2f4fd;
  --ifm-color-primary-lightest: #cefafe;
  --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}

.cursor {
  animation: blink 0.8s infinite steps(2);
}

@keyframes blink {
  0% { opacity: 0; }
  100% { opacity: 1; }
}