* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

:root {
    --prim-color: #B5C746;
    --light-color: rgba(255, 255, 255, 0.8);
    --white-color: rgb(255, 255, 255);
    --acsent-color: #393e46;
    --full-width: 100%;
}

h2 {
    font-size: 20px;
    font-weight: 500;
}

h3 {
    font-size: 20px;
    font-weight: 300;
}

h4 {
    font-size: 14px;
    font-weight: 300;
}

h5 {
    font-size: 14px;
    font-weight: 275;
}


/*Navbar*/

.navbar {
    display: flex;
    position: sticky;
    justify-content: space-between;
    align-items: center;
    color: #313232;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
    font-size: 20px;
    font-weight: 300;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: #000000;
    padding: 1rem;
}

.navbar-links li:hover {
    background-color: #B5C746;
    color: #F9FAF8;
}

.toggle-button {
    position: absolute;
    top: 20px;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 10px;
}


/*Header*/

.header ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 300;
}

.profil {
    margin-top: 300px;
}

.profil .bintang {
    margin-top: -100px;
}

.profiltwo .about {
    margin-top: -10px;
    margin-left: 300px;
}

.profilthree {
    margin-top: 100px;
}

.experience {
    margin-top: 100px;
}


/*zoomin*/

figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

figure:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

@media (max-width: 800px) {
    /*Navbar*/
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .toggle-button {
        display: flex;
    }
    .navbar-links {
        display: none;
        width: 100%;
    }
    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }
    .navbar-links ul li {
        text-align: center;
    }
    .navbar-links ul li a {
        padding: .5rem 1rem;
    }
    .navbar-links.active {
        display: flex;
    }
}

@media (max-width: 768px) {
    .profil .bintang {
        visibility: hidden;
    }
}

@media (max-width: 576px) {
    .profil {
        margin-top: 350px;
    }
    .profiltwo {
        margin-top: 50px;
        margin-left: -270px;
    }
}