:root {
  --color-green-light: #f0fffc;
  --color-green-normal: #0db793;
  --color-green-dark: #20484f;
  --color-pink: #e24d7e;
  --color-white: #fefefe;
  --color-text: #121212;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-ml: 24px;
  --space-lg: 32px;
  --space-xl: 64px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  font-family: "Encode Sans", sans-serif;
  font-style: normal;
  text-decoration: none;
  list-style: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: 0;
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}
