* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto';
}

ul {
    list-style-type: none;
    background-color: rgb(36, 36, 36);
    position: relative;
}

ul li {
    display: inline-block;
    position: relative;
}

ul li:hover {
    background-color: rgba(68, 68, 68, 0.479);
}

/* ul li::after {
    content: '';
    height: 60%;
    width: 1px;
    background-color: rgb(240, 240, 240);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

ul li:first-child::after {
    content: '';
    height: 60%;
    width: 0.5px;
    background-color: rgb(240, 240, 240);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
} */

ul li a {
    color: rgb(240, 240, 240);
    text-decoration: none;
    font-size: 16px;
    padding: 15px;
    display: block;
}

ul ul {
    position: absolute;
    min-width: 200px;
    background-color: rgb(36, 36, 36);
    display: none;
}

ul ul li {
    display: block;
    background-color: rgb(116, 70, 70);
}

ul li:hover ul {
    display: block;
}

.fa-caret-down {
    margin-left: 10px;
}

nav div {
    background-color: rgb(36, 36, 36);
    color: rgb(240, 240, 240);
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    display: none;
}

@media(max-width: 768px) {
    nav div {
        display: block;
    }
    ul {
        display: none;
        position: static;
        background-color: rgb(36, 36, 36);
    }

    ul li {
        display: block;
    }
    ul ul {
        position: static;
        background-color: rgb(36, 36, 36);
    }
}
