body, h1, h2, h3, h4, h5, h6, p, span, a, li, div {
  color: #000000;
}

/*==================================
  FONT SETTINGS
==================================*/
/* Import Poppins and Merriweather fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Meow+Script:wght@400;700&display=swap');

/*==================================
  ROOT VARIABLES
==================================*/
:root {
  /* Font families for consistent typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Meow Script', cursive;

/*==================================
  HEADING STYLES
==================================*/
/* Apply Merriweather font to the greeting */
.information-widget-logo + .information-widget-greeting span {
  font-family: var(--font-secondary) !important;
  font-weight: 700 !important;
}

/* Logo size and positioning */
.information-widget-logo img {
  width: var(--logo-size) !important;  
  height: var(--logo-size) !important;
  max-width: none;   
  max-height: none;     
  margin-left: var(--spacing-lg);
}

