/* light mode */
.light > *{
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
}

.light > #footer-socialNetworks-github-svg-path{
    fill: none;
}

/* dark mode */
.dark {
    --background-color: #0f172a !important;
    --secondary-background-color: #1e293b !important;
    --text-color: #e4e6eb !important;
    --text-secondary-color: #b0b3b8 !important;
    --text-link-color: #38bdf8 !important;
    --primary-color: #38bdf8;
    --secondary-color: #1e293b;
}

.dark #footer-socialNetworks-github-svg-path{
    fill: #FFFFFF;
}

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

#theme-toggle:focus {
    outline: 0;
}

#theme-toggle svg {
    height: 18px;
}

button#theme-toggle {
    border: none;
    font-size: 26px;
    margin: auto 4px;
}

body.dark #moon {
    vertical-align: middle;
    display: none;
}

body:not(.dark) #sun {
    display: none;
}

body:not(.dark) {
    --background-color: #bfdbfe !important;
    --secondary-background-color: #93c5fd !important;
    --text-color: #0f172a !important;
    --text-secondary-color: #1e3a5f !important;
    --text-link-color: #1d4ed8 !important;
    --primary-color: #1d4ed8;
    --secondary-color: #93c5fd;
}