:root {
    --basic-color: #1D1E1E;
}
.dark-theme {
    --basic-color: #E1E2E2;
}

.italic-font {
    background: var(--gradient-orange);
    font-family: 'Merriweather-italic', sans-serif;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.glass-background {
    isolation: isolate;
    background: rgba(255, 255, 255, .01);
    box-shadow: 0px 6px 4px rgba(0, 0, 0, 0.03), inset -1px -1px 0.5px rgba(255, 255, 255, 0.05), inset 1px 1px 0.5px rgba(255, 255, 255, 0.05), inset -3px -8px 10px 3px rgba(0, 0, 0, 0.01), inset 3px 5px 30px 3px rgba(255, 255, 255, 0.45), inset -10px -10px 15px rgba(0, 0, 0, 0.03), inset 7px 7px 18px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px) saturate(80%);
    transform: rotate(0.02deg);
}