:root, .theme-dark {
    --bg-color: #000;
    --text-color: #fff;
}

.theme-light {
    --bg-color: #fff;
    --text-color: #000;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-color);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}

.moon-container {
    transform: scale(1.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mph-widget {
    color: var(--text-color) !important;
    box-shadow: 0 3px 6px var(--bg-color), 0 3px 6px var(--bg-color) !important;
}
.mph-link a:link, .mph-link a:visited {
    color: var(--text-color) !important;
}