/* Set background color and custom CSS variables for primary colors */
html,
body {
  background-color: #ffffff; /* Set the background color for the entire page */
  --primary-white: #faeff0; /* Custom CSS variable for a primary white color */
  --primary-green: #20D7DF; /* Custom CSS variable for a primary green color */
  --primary-green-hover: #1AC7D0; /* Custom CSS variable for a darker green color on hover */
  --primary-red: #ee6161; /* Custom CSS variable for a primary red color */
  --primary-black: #191919; /* Custom CSS variable for a primary black color */
  color: var(--primary-black); /* Set the text color for the entire page using the primary black color */
  box-sizing: border-box; /* Use border-box box-sizing model for elements */
  font-weight: 400 !important; /* Set the font weight for all elements with importance */
  font-family: "Inter", sans-serif; /* Set the default font family for the page */
}

/* Set the width and minimum height of the body */
body {
  width: 100%; /* Set the body width to occupy the full width of the viewport */
  min-height: 100vh; /* Set the minimum height of the body to fill the entire viewport */
}

/* Style for anchor (link) elements */
body a {
  text-decoration: none; /* Remove underline from all anchor (link) elements */
  color: var(--primary-black); /* Set the text color for all anchor (link) elements using the primary black color */
}

/* Center align the immediate child div element within the body */
body>div {
  margin: 0 auto; /* Set margin to center the immediate child div element horizontally */
}

/*# sourceMappingURL=universal.css.map */
