:root {
    --main-color: #31a5ae;
    --main-text-color: #000;
	
	--x-light-grey: #e6e7e8;
	--light-grey: #d1d3d4;
	--blue-tint: #aacdd3;
	--light-blue: #d6e6e9;
	--light-blue-tint: #c4dde0;
	--grey: #bcbec0;
	--black: #000;
	--white: #FFF;
	--torquoise: #31a5ae;
	--watermelon: #ef4568;
	--mango: #fdb913;
	--lime: #b0d235;
}

/* https://www.joshwcomeau.com/css/custom-css-reset/ */
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
}
input, button, textarea, select {
	font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}
p {
	text-wrap: pretty;
	margin-bottom: 12px;
}
h1, h2, h3, h4, h5, h6 {
	text-wrap: balance;
}
a { text-decoration: none; }
#root, #__next {
	isolation: isolate;
}