:root {
    --Color1: #8C1212;
    --Color2: #0F0F12;
    --Color3: #1C1F26;
    --Accent: #9DA3AA;
    --Text: #F2F2F2;
    --Text2: #1A1D23;
}

/* Header Nav */
#Header-list {
    padding: 0;
    position: absolute;
    list-style: none;
    z-index: 2;
    display: flex;
    margin: 1.5vw;
    width: 97vw;
    background-color: var(--Color1);
    box-shadow: 0px 0px 11px 1px #000000c0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#Header-list li a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: white;
    padding: 16px;
    display: block;
    text-decoration: none;
}

#Header-list li:hover {
    background-color: rgba(119, 59, 60, 0.699);
}

#Header-list :last-child {
    margin-left: auto;
    margin-right: 1vw;
}

#Header-list :first-child {
    margin-left: 1vw;
}

/* Hamburger */
.hamburger {
    display: none;
    position: absolute;
    top: 22.5px;
    left: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 3;
}

.hamburger span {
    display: block;
    height: 4px;
    background-color: white;
    margin: 5px 0;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 15px;
    left: 1.5vw;
    width: calc(100% - 3vw);
    background-color: var(--Color1);
    box-shadow: 0px 6px 11px 1px #000000c0;
    border-radius: 6px;
    overflow: hidden;
    z-index: 2;
}

.mobile-menu a {
    display: block;
    padding: 16px;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.mobile-menu a:hover {
    background-color: rgba(119, 59, 60, 0.699);
}

.mobile-menu.show {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    #Header-list {
        display: none;
    }

    .hamburger {
        display: block;
    }
}