@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}
:root {
  --color-white: #fff;
  --color-red: red;
  --color-black: #000;
  --color-accent: lightseagreen;
  --color-card-shadow: rgba(0, 0, 0, 0.05);
  --color-form-bg: #f4f9fb;
  --color-form-shadow: rgba(0, 188, 212, 0.2);
  --color-primary: lightseagreen;
  --color-primary-hover: #0097a7;
}

html {
  scroll-behavior: smooth;
}

.btn {
  text-decoration: none;
  color: white;
  background-color: lightseagreen;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  display: inline-block;
  border: none;
  border-radius: 0.2rem;
  cursor: pointer;
  font-size: 1rem;
}