﻿/* wwwroot/css/theme.css */

/*@import url("https://fonts.googleapis.com/css2?family=Suse:wght@400;700&display=swap");*/

:root {
    --primary-color: #00f0ba; /* Green color */
    --secondary-color: #585858; /* Dark gray color */
    --body-bg: #ffffff; /* White color */
    --text-color: #3b3b3b; /* Text dark color */
    --light-gray-color: #CBCBCB; /* Light gray color */
    --heading-color: #2a2a2a; /* Darker color for headings */
    --heading-font-weight: 700 /* Bold weight for headings */
}

.suse-SuseFontFamily {
    font-family: "NunitoSans", NunitoSans;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal
}

body {
    font-family: "NunitoSans", NunitoSans;
    background-color: var(--body-bg);
    color: var(--text-color)
}

h1 {
    font-size: 2.5em; 
    margin-bottom: 0.5em
}

h2 {
    font-size: 2em; 
    margin-bottom: 0.5em
}

h3 {
    font-size: 1.75em; 
    margin-bottom: 0.5em
}

h4 {
    font-size: 1.5em; 
    margin-bottom: 0.5em
}

h5 {
    font-size: 1.25em; 
    margin-bottom: 0.5em
}

h6 {
    font-size: 1em; 
    margin-bottom: 0.5em
}
