#header {
    z-index: 1;
    position: absolute;
    top: 0px;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    padding-top: 30px;
    color: rgba(var(--foreground), .5);

    background-image: linear-gradient(rgba(5,5,5,.1), rgba(0, 0, 0, 0)); 
}

#header hr {
    width: 11%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

#menu {
    display: table;
    margin: 0 auto;
    height: 100%;
    text-align: center;
}

#theme {
    float: right;
    height:0px;
}

#theme div {
    height:0px;
    margin-right: 20px;
}

#theme-icon:hover {
    cursor: pointer;
}

.menu-item {
    color: rgb(var(--foreground));
    display: table-cell;
    padding: 0px 20px;
}

.menu-item i {
    transition: all 300ms;
}

.menu-item i:hover {
    transform: scale(1.5);
    cursor: pointer;
}

.dot {
    margin-top: 20px;
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: rgb(var(--foreground), .5);
    border-radius: 50%;
    opacity: 0;
}

.menu-item.active .dot {
    opacity: 1;
}