﻿:root {
    /* Colors */
    --color-primary: #0071F9;
    --color-primary-hover: #1158c7;
    --color-secondary: #6CC7FF;
    --color-secondary-hover: #ffffff;
    --color-text: #142C47;
    /* Typography */
    --font-family-base: "Outfit", sans-serif;
}

body {
    width: 100%;
}

html, body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.content {
    width: 100%;
    max-width: 100%;
    padding-top: 75px;
}

h1:focus-visible {
    outline: none;
}

