/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background-green: #d8e9df;
  --hero-blue-start: #1e81ce;
  --hero-blue-end: #a8d1f0;
  --text-dark-green: #1d4b3e;
  --button-light-mint: #e2f1e8;
  --text-white: #ffffff;
  --text-gray: #777777;
}

body {
  background:#e3f1ea;
  color: var(--text-dark-green);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a:focus,
button:focus,
input:focus {
  outline: 2px dashed #1f6e3c;
  outline-offset: 2px;
}

a {
  text-decoration: none;
  color: inherit; 
}
