:root {
    --text-color: #000000;
    --shadow-color: #38383888;
    --background-color: #ededed;
    --color-orange: #FFBE00;
    --color-blue: #003269;
}

body {
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
}

#wrapper {
    box-shadow: 0 0.5rem 1rem var(--shadow-color);
    border-radius: var(--bs-border-radius) !important;
    background-color: #ffffffff
}

.orange {
    color: var(--color-orange) !important;
}

.footer {
    font-size: smaller;
    color: black;
}

h1, h2, h3, h4 {
    color: var(--color-orange) !important;
}

.darker {
    background-color: lightgrey;
}