:root {
    --bg-color: #18191C;
    --header-color: #0D0D0D;
    --dark-item-color: #1B1C1F;
    --item-color: #202225;
    --text-grey-color: #8E9DAA;
    --text-white-color: #DFDFDF;
    --primary-color: #006aff;
    --primary-hover-color: #005cdd;
    --bg-footer-color: #090909;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

footer {
    position: fixed;
    height: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    background-color: var(--bg-footer-color);
    color: var(--primary-color);
    font-size: 14px;
}