body {
    font-family: "poppins", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
    padding: 0px;
    background: #F4F4F4;

    font-size: 15px;

    color: var(--font);

    margin: 0px;
    padding: 0px;

    overflow-x: hidden;
}


:root {
    --font: #929292;
    --button: #4F5B4F;
    --green: #123C12;
}

nav {
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px !important;
}

nav img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}


#logo-bar {
    width: 30px;
    height: 30px;


    margin-right: 20px;
    cursor: pointer;
}

#logo-ragan {
    margin-left: 20px;
    cursor: pointer;

}

nav div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

nav div ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

nav div ul li {
    font-size: 20px;
    color: var(--font);
    cursor: pointer;
    user-select: none;
}

nav div ul li:hover {
    color: var(--button);
}

nav div ul li:active {
    color: var(--green);
}

#menu-aktif {
    font-weight: bold;
    color: #4F5B4F;
}

#popup-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 10px;
    border-radius: 10px;
    width: 250px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
}

.popup-content>ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 0px;
}

.popup-content>ul li {
    text-align: center;
    width: 100%;
    cursor: pointer;
    padding: 0px;
}

#close-popup {
    position: absolute;
    right: 10px !important;
    bottom: 10px;
    background-color: #123C12;
    padding: 10px;
    border-radius: 100px;
    cursor: pointer;
    color: white;
}


/*  */

.konten-area {
    width: 95%;
    margin-bottom: 50px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (max-width: 768px) {
    nav {
        width: 100vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px !important;
    }

    nav img {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }


    #logo-bar {
        width: 30px;
        height: 30px;


        margin-right: 20px;
        cursor: pointer;
    }

    #logo-ragan {
        margin-left: 20px;
        cursor: pointer;

    }

    nav div {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    nav div ul {
        display: none;
    }

    #menu-aktif {
        font-weight: bold;
        color: #4F5B4F;
    }

    #popup-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1111111111111;
    }

    .popup-content {
        background: white;
        padding: 10px;
        border-radius: 10px;
        width: 90%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        position: relative;
    }

    .popup-content>ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        padding: 0px;
    }

    .popup-content>ul li {
        text-align: center;
        width: 100%;
        cursor: pointer;
        padding: 0px;
    }

    #close-popup {
        position: absolute;
        right: 10px !important;
        bottom: 10px;
        background-color: #123C12;
        padding: 10px;
        border-radius: 100px;
        cursor: pointer;
        color: white;
    }


    /*  */

    .konten-area {
        width: 95%;
        margin-bottom: 50px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}