/* MAIN ROOT STYLE */

:root {
    --turquoise: #40e0d0;
    --turquoise-light: #5ffbeb;
    --turquoise-dark: #2eb8aa;
    --black: #1a1a1a;
    --grey: #2d2d2d;
    --grey-light: #b0b0b0;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.9);
    --accent: rgba(64, 224, 208, 0.1);
    --radius: 10px;
    --gap: 14px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}


* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0
}