:root {
    --background-color: #000000a2;
    --darker-background-color: ;
    --accent-color: ;
    --text-color: #FFFFFF;
    --navbar-height: 55px;
    --navbar-hight-two: 100px;
    --navbar-bar-color: #000000;
    --font-color-hover: #00FF00;
    --font-family-code: Montserrat, Arial, Helvetica, sans-serif;
}

nav {
    height: 80px;
    background: var(--navbar-bar-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-family: var(--font-family-code);
}

nav .logo {
    margin-left: 30px;
    font-family: var(--font-family-code);
    font-size: 35px;
    font-variant: small-caps;
    text-decoration: none;
}

nav ul {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

nav li {
    height: 100%;
    width: 150px;
    text-align: center;
    position: relative;
    list-style: none;
    right: 30px;
}

nav li:hover {
    background: var(--accent-color);
}

nav ul a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.6s;
}

nav ul a:hover {
    color: var(--font-color-hover);
}

#test123 {
    color: #FFFFFF;
    font-size: 22px;
    font-family: var(--font-family-code);
    transition: color 0.6s;
}

#test123:hover {
    color: var(--font-color-hover);
}

#list22 a {
    font-size: 22px;
    font-family: var(--font-family-code);
}

#test1234 {
    color: var(--text-color);
    transition: color 0.6s;
}

#test1234:hover {
    color: var(--font-color-hover);
}

.dropdown {
    height: min-content;
    width: 200px;
    background: var(--background-color);
    display: none;
    flex-direction: column;
    position: absolute;
    left: -22px;
    top: var(--navbar-height);
}

.dropdown li {
    height: 70px;
    width: 100%;
    padding-left: 30px;
}

.dropdown li a {
    justify-content: center;
    padding-left: 30px;
    width: calc(100% - 30px);
}

.dropdown li a:focus {
    outline: none;
}

nav li:hover .dropdown {
    display: flex;
}

nav input[type="checkbox"] {
    display: none;
}

.expandeblelist {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggleButton {
    width: 35px;
    height: 25px;
    position: absolute;
    top: 25px;
    right: 45px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    height: 4px;
    width: 100%;
    background: var(--text-color);
    border-radius: 100px;
}

@media(max-width: 1003px) {
    .toggleButton {
        display: flex;
    }
    nav ul {
        height: min-content;
        width: 100%;
        background: var(--background-color);
        display: none;
        position: absolute;
        top: var(--navbar-hight-two);
    }
    nav li {
        height: min-content;
        width: 100%;
        padding-left: 38px;
    }
    nav ul a {
        padding: 30px 0;
    }
    .expandeblelist {
        display: block;
    }
    .expandeblelist label {
        padding: 30px 0;
        cursor: pointer;
        display: block;
    }
    .expandeblelist:hover .dropdown {
        display: none;
    }
    .expandeblelist input[type="checkbox"]:checked~.dropdown {
        display: block;
    }
    .dropdown {
        position: static;
        width: 100%;
    }
    .dropdown li {
        padding: 0;
        display: block;
        position: static;
        background: var(--darker-background-color);
        left: 100px;
    }
    .dropdown li a {
        width: 100%;
        padding: 0;
        justify-content: center;
        padding-right: 25px;
    }
    #toggleButton:checked~ul {
        display: block;
    }
    #toggleButton:checked+label .bar {
        background-color: var(--font-color-hover);
        transition: background-color 0.3s;
    }
    #toggleButton:not(:checked)+label .bar {
        background-color: #FFFFFF;
        transition: background-color 0.3s;
    }
    .toggleButton:hover .bar {
        background-color: var(--font-color-hover);
        transition: color 0.3s;
    }
    .toggleButton:checked .bar {
        background-color: var(--font-color-hover);
        transition: background-color 0.3s;
    }
    .toggleButton .bar {
        transition: transform 0.6s;
    }
    .toggleButton:hover .bar {
        transform: scale(1.2);
    }
}

#logoLogo {
    width: 190px;
    padding-left: 30px;
}

.fontFor {
    color: #FFFFFF;
}