* {
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    
}
body {
    height: 200vh;
    background-image: url(christopher-gower-m_HRfLhgABo-unsplash.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
nav {
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    align-items: center;
}
nav ul li {
    display: inline-block;
    list-style: none;
    align-items: center;
}
nav li {
    height: 50px;
}
nav ul li .fas {
    display: none;
}
.fas {
    display: none;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}
nav a:hover {
    background-color: #f0f0f0;
}
img {
    background-position: left;
    background-repeat: no-repeat;
    background-size: 3%;
    display: flex;
}
img:hover {
    transform: scale(1.3);
    cursor: zoom-in;
    transition: 0.5s ease-in;
    opacity: 0.5s;
}
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li {
    width: 100%;

}
.sidebar a{
    width: 100%;
}
.menu-button {
    display: none;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 100px auto; /* Margin atas untuk memberi jarak dari navbar */
    max-width: 800px; /* Membatasi lebar konten */
    padding: 20px;
    box-shadow: 50px 50px 50px rgba(252, 11, 11, 0.1);
    background-color: white;
    border-radius: 10px;
    margin-top: 35em;
}
.title {
    color: gold;
    cursor: progress;
}
.title h1::after {
    content: "";
    width: 0;
    height: 3px;
    background: #f72adb;    
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
.title h1:hover::after {
    width: 100%;
    position: center;
    align-items: center;
}
.list-item {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    list-style: none;
}
.list-item .project a {
    color: #07ff07;

}
li a:hover {
    transition: 0.5s ease-in-out;
    transform: scale(1.3);
}
.list-item .project a:hover {
    opacity: 0.5s;
    transition: 1s;
    text-decoration: wavy ;
    transform: scale(1.4);
    color: orangered;
} 
.project {
    font-size: 18px;
    font-weight: 400;
}
@media(max-width: 800px) {
    .hideOnMobile {
        display: none;
    }
    .fas {
        display: block;
    }
}
.menu-button {
    display: block;
}
@media(max-width: 400px) {
    .sidebar {
        width: 100%;
        display: block;
    }
    .fas {
        display: block;
    }
    
}