﻿@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap');

:root {
    --header-footer-bg: #C8CACB;
    --header-footer-text: #3B5058;
    --section-title: #3B5058;
    --text-color: #333333;
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-color);
}

.bg-header-footer { background-color: var(--header-footer-bg); }
.text-header-footer-bg { color: var(--header-footer-bg); }
.text-header-footer { color: var(--header-footer-text); }
.bg-header-footer-text { background-color: var(--header-footer-text); }
.text-section-title { color: var(--section-title); }
.bg-section-title { background-color: var(--section-title); }
.text-body { color: var(--text-color); }
