@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

a {
    text-decoration: none;
}

header {
    position: relative;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;

}


header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 57vh;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0), rgba(0, 0, 0, 0));
}

.navbar {
    background-color: rgba(26, 26, 26, 0.5);
    z-index: 2;
}

nav {
    display: flex;
    top: 0;
    justify-content: space-between;
    padding: 2rem;
    position: sticky;
}

nav .menu {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

nav li {
    margin-right: 17px;
}

nav ul li a {
    color: rgb(255, 255, 255);
    font-size: 100%;
    text-decoration: none;
}

.garis3 {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.marmut-lg {
    display: flex;
}

.marmut-lg a {
    color: #ffffff;
    text-shadow: 0px 0px 90px#000000;
    font-size: 1.3rem;
}

.marmut-lg img {
    height: 2.2rem;
    border-radius: 200px;
    margin-top: 1px;
    margin-right: 10px;
}

@media screen and (max-width: 980px) {
    nav {
        z-index: 2;
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(2.3px);
        -webkit-backdrop-filter: blur(2.3px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    nav .menu {
        position: fixed;
        gap: 0;
        flex-direction: column;
        color: #000000;
        background: rgb(255, 255, 255);
        text-align: center;
        transition: 0.9s;
        top: 80px;
        left: -100px;
        z-index: 2;
    }

    .menu.aktif {
        left: 0;
        width: 100%;
    }

    .menu-ln {
        margin: 16px 0;
    }

    .garis3 {
        display: block;
    }

    .garis3.aktif .bar:nth-child(2) {
        opacity: 0;
    }

    .garis3.aktif .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .garis3.aktif .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}