@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap");

:root {
  --green: #064333;
  --white: #ffffff;
  --gray: #e4e4e4;
  --darkGray: #3d3d3d;
  --ghostWhite: #f9f9f9;
  --lightenGreen: #0d916e;
}

* {
  font-family: "Inter", sans-serif;
}

body {
  background-color: var(--ghostWhite);
}

a,
ul {
  color: var(--green);
}

a:hover {
  color: lighten(var(--lightenGreen));
}

ul {
  font-weight: 400;
}

h1 {
  font-weight: 600;
  font-size: 30px;
}

h1,
h3,
h3 > a {
  color: var(--darkGray);
}

h3 {
  font-weight: 600;
  font-size: 16px;
}

h3 > a {
  font-weight: 700;
}

h4 {
  font-weight: 600;
  font-size: 14px;
}

p {
  font-weight: 400;
  font-size: 16px;
  color: var(--darkGray);
}

.box-img i {
  color: #9fa8da;
}

.btn-default {
  color: var(--darkGray);
}

.form-control {
  color: var(--gray);
  font-weight: 400;
}

.link {
  font-weight: 300;
  font-size: 14px;
}

.links > h4 {
  font-weight: 700;
}
