@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  font-family: "Open Sans", sans-serif;
  color: #060805;
}
.navbar {
  background: #fcfffa;
  border-bottom: 1px solid #e3e3e3;
}
.logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #93c94d, #acdc6f);
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: none;
}
.nav-link {
  font-size: 1.1rem;
}
.nav-link:hover {
  text-decoration: underline;
}
.button {
  padding: 8px 16px;
  background: hsl(86, 53%, 55%);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
  border: none;
}
.button:hover {
  background: #acdc6f;
}
