:root {
    --hov: #a97b56;
    --coklat: #b48761;
    --red: #d10303;
    --bg2: #f1f1f1;
    --darkblue: #003d6f;
    --font: #4e4e4e;
    --h1: #6F6F6F;
    --fontresult: #ff7a00;
    --hoverblue: #28abd3;
}

footer {
    display: none;
}

.header-mobile {
    display: none;
}

.popup-menu {
    display: none;
}

::-webkit-scrollbar {
    display: none;
}

*,
body,
html {
    font-family: "Poppins", sans-serif;
    font-size: 12px;

    color: var(--font);

    margin: 0px;
    padding: 0px;
}

body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background-color: #fafafa;
    color: var(--font);

    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/*  */

nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    width: 15vw;
    height: 93%;
    padding: 10px;
}

nav ul {
    display: flex;
    flex-direction: column;

    list-style: none;
    width: 100%;
    gap: 5px;
}

nav ul .menu {
    display: flex;
    flex-direction: row;
    align-items: center;

    height: 40px;
    padding-left: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.menu.aktif{
    background-color: var(--coklat);
}

.menu.aktif p{
    font-size: 15px;
    color: white;
}

.menu.aktif:hover p{
    font-size: 18px;
}

nav ul li p{
    user-select: none;
    letter-spacing: 1px;
}

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

nav ul li:active{
    background-color: var(--hov);
}

nav ul li:active p{
    color: white;
}

nav ul li:hover p {
    font-size: 18px;
}

nav button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 5px;
    background-color: var(--coklat);
    border: transparent;
    cursor: pointer;
}

nav button i {
    color: white;
}

nav button p {
    color: white;
}

nav button:hover {
    background-color: var(--hov);
}

nav button:active {
    background-color: var(--coklat);
}

/*  */

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

    width: 85vw;
    height: 100vh;
    border: white solid 1px;
}

.wrap-konten {
    display: flex;
    flex-direction: column;

    width: 96%;
    height: 93%;
    background-color: var(--bg2);
    padding: 10px;
    border-radius: 10px;
}