@font-face {
	font-family: "Work Sans";
	src: url('../assets/fonts/worksans_variable.ttf');
}

@font-face {
	font-family: "Work Sans Italic";
	src: url('../assets/fonts/worksans_italic_variable.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans";
  color: #2b2b2b;
  background-color: #f5f1e8;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.cg-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  padding: .6rem;
  width: fit-content;
  color: #4a5e1e;
  font-weight: 700;
  border-radius: 99px;
  outline: none;
  border: none;
  background-color: #8fb339;
  transition: background-color 0.3s ease;
  font-family: "Work Sans";
}

.cg-button:hover {
  background-color: #6d8a2b;
  color: #e8f2d6;
  outline: none;
  border: none;
}

input {
  font-family: "Work Sans", sans-serif;
}

textarea {
  font-family: "Work Sans", sans-serif;
  resize: none;
}