﻿<style >
        /*Body color Dark or Light*/
        :root {
            --bg-page: #0f172a;
            /*--text-color: white;*/
        }
        body {
            background-color: var(--bg-page);
            /*color: var(--text-color);*/
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            transition: background-color 0.4s ease, color 0.4s ease;
        }
</style >
