/* Set the main background for the light theme */
:root {
  --wh-color-bg-main: #F4F0E4; /* Paperwhite */

    }

/* Set the main background color for the dark theme */
:root.theme-dark {
  --wh-color-bg-main: #05303A; /* Shadow */

  }

/* Override the color for selected tab in dark mode */
._dark_1fcqo6x_35._classic_1fcqo6x_31 ._tab_1fcqo6x_13._selected_1fcqo6x_141 {
    color: #F08418; /* Orange */
}

/* Override the color for the starting page card in dark mode */
._themeDark_1uu62mp_37 {
    background: #05303A; /* Shadow */
}

/* Override the color for the starting page card icon in dark mode */
._themeDark_1uu62mp_37 .starting-page-card__icon {
    color: #F4F0E4; /* Paperwhite */
}

/* Override the highlight color for the full search terms */
.full-search__results em {
    background: #FCA807;  /* Lemon */
    color: #05303A;  /* Shadow */
}

/* Override the highlight color for the quick search terms */
.quick-search__results em {
    background: #FCA807;  /* Lemon */
    color: #05303A;  /* Shadow */
}

 /* make the border for images transparent with a 5px radius */
  .article__img {
      border-radius: 5px;
      border: none;
      }


/**
 * @license
 *
 * Font Family: Zodiak
 * Designed by: Jérémie Hornus, Gaetan Baehr, Jean-Baptiste Morizot, Alisa Nowak, Theo Guillard
 * URL: https://www.fontshare.com/fonts/zodiak
 * © 2023 Indian Type Foundry
 *
 * Font Styles:
 * Zodiak Black
 *
*/


/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 100.0 to 900.0)

*/


@font-face {
    font-family: 'Zodiak-Bold';
    src: url('Zodiak-Bold.woff2') format('woff2'),
       url('Zodiak-Bold.woff') format('woff'),
       url('Zodiak-Bold.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
    font-style: normal;
}


@font-face {
  font-family: 'Forno';
  src: url("Forno Standard Regular.otf") format("opentype");
}

/* Fonts - Titles */
.title__content {
  font-family: Zodiak-Bold;
}


/* Fonts - Paragraphs */  
.article__p {
    font-family: Forno;
}



