@import url("fonts.css");
/* Define variables */
:root {
  --primary-color: #756f6f;
  --secondary-color: #6e6d76; /* menu-gray */
  --background-color: #f8f9fa;
  --white-color: #fff;
}

/* Reset default styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* Set default font and background color */
body {
  font-family: "Mulish-light", sans-serif;
  background-color: #fff;
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 1;
}

/* Style the header */
/* h1 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  padding: 20px;
  background-color: #fff;
} */

/* Style the main content */
p {
  font-size: 16px;
  color: var(--menu-color);
}

/* Style links */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
