:root {
    --primary: #073b8f;
    --primary-dark: #062e70;
    --secondary: #0d5bc7;
    --light-blue: #eef6ff;
    --dark: #10213f;
    --text: #5d6878;
    --border: #e1e8f1;
    --red: #e31d2b;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

:focus-visible {
    outline: 3px solid rgba(13, 91, 199, 0.35);
    outline-offset: 2px;
}
