/*
 Theme Name: Infina Health Child
 Theme URI: https://infinahealth.com
 Description: Child theme for Infina Health website
 
 Author: Rashid Irshad 
 Author URI: https://infinahealth.com
 
 Version: 1.0.0
 
*/



/* Colors */
:root {
  --sky-blue: #4CCDED;
  --salmon: #F4947A;
  --dark-text: #141414;   /* suggested body text color */
  --light-bg: #ffffff;    /* suggested background */
}

/* Fonts */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--sky-blue);
}

/* Accent text or highlights */
.accent {
  color: var(--salmon);
}


