@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

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

body,
button {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Montserrat", sans-serif;
}

button,
input {
  background: none;
  border: none;
}

a {
  text-decoration: none;
}

@keyframes slowspin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

:root {
  --primary: #0c5f0f;
  --primary-light: #18c31e;
  --primary-dark: #127114;
  --border: #4a1200;
  --orange: #a68e0e;
  --text: #1e1e1e;
  --yellow: #ffc107;
  --dark: #1e1e1e;
  --pink: #ff699b;

  --shadow: 0px 4px 24.5px rgba(0, 0, 0, 0.25);
  --gradient-primary: linear-gradient(to bottom, var(--primary), #104211);
  --custom-green-gradient: linear-gradient(to right, #127114, #19bd1c);
  --custom-dark-green-gradient: linear-gradient(to top right, #4ba14e, #0c5e0f);
  --custom-green-gradient-left: linear-gradient(to left, #127114, #19bd1c);
  --custom-pink-gradient: linear-gradient(to right, #ff699b, #f5b4c0);
  --custom-white-gradient: linear-gradient(
    to bottom right,
    rgba(253, 253, 253, 0.87),
    rgba(211, 209, 209, 0.87)
  );
  --custom-primary-gradient: linear-gradient(to bottom, #0c5e0f, #104211);
  --custom-orange-gradient: linear-gradient(to bottom, #f27a02, #ed6704);
  --custom-yellow-gradient: linear-gradient(to bottom, #fed813, #fbcd14);
  --custom-gray-gradient: linear-gradient(to bottom right, #ffffff, #d9d9d9);
}

button {
  cursor: pointer;
}
