:root {
    --bs-body-bg: #000000;  /* Background */
    --bs-primary: #FF5959;  /* Button color */
    --bs-secondary: #272B45;  /* Secondary color */
    --bs-light: #FFFFFF;  /* Text color */
    --bs-body-color: #FFFFFF;  /* Default text color */
    --bs-font-family: 'Source Sans Pro', sans-serif;
}

/* Typography */
h1 { font-size: 32px; font-weight: bold; }
h2 { font-size: 24px; font-weight: bold; }
h3 { font-size: 16px; font-weight: bold; }
p, a, li { font-size: 16px; font-weight: 400; } /* Regular Body */
.text-light-weight { font-size: 16px; font-weight: 300; } /* Light Body */

/* Buttons */
.btn-primary {
    background-color: var(--bs-primary);
    border: none;
    color: var(--bs-light);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
}
.btn-primary:hover {
    background-color: #e04e4e;
}
