﻿/* Theme Changer */
.theme-changer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .theme-changer.active {
        display: flex;
    }

body.dark-theme .theme-changer {
    background-color: #191a2caa;
    color: #f5f5f5;
}

body.light-theme .theme-changer {
    background-color: #f5f5f5aa;
    color: #191a2c;
}
