        /* CSS untuk tampilan umum */
        html {
            font-family: sans-serif;
            color: #fff;
            text-shadow: 1px 1px 4px #000;
        }
        body {
            margin: 0;
            background-color: #f2f2f2;
        }
        img {
            vertical-align: bottom;
            max-width: 100%;
            height: auto;
        }
        a {
            color: white;
            text-decoration: none;
        }
        /* CSS untuk navigasi */
        .nav {
            position: fixed;
            top: 25%;
            left: 0;
            z-index: 999;
            transform: translateY(-50%);
        }
        .nav ul {
            list-style: none;
        }
        .nav ul li {
            padding: 4px 0;
        }
        /* CSS untuk header appbar */
        .header__appbar {
            background-color: #333;
            padding: 4px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header__appbar .site-logo {
            max-width: 4px; /* Ukuran logo */
            height: auto;
            border-radius: 50%;
        }
        .header__appbar .reaction-emojis {
            display: flex;
        }
        .header__appbar .reaction-emojis img {
            margin-right: 4px;
            border-radius: 50%;
        }
        /* CSS untuk bagian section */
        .section {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        .section_inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }
        .gallery-item {
            width: 250px;
            height: 250px;
            margin: 5px;
            overflow: hidden;
            border-radius: 4px;
            transition: transform 0.3s ease-in-out;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .gallery-item:hover {
            transform: scale(1.1);
        }
        .homepage-body {
            width: 90%;
            max-width: 800px;
            margin: 0 auto;
            background-color: #fff;
            padding: 20px;
            border-radius: 4px;
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .homepage-body h2 {
            color: #333;
            margin-bottom: 20px;
        }
        .homepage-body p {
            color: #666;
            line-height: 1.6;
        }
		le>
        /* Reset style */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-image: url('background.jpg');
            background-size: cover;
            color: #333;
        }

        /* Navigasi */
        .nav {
            font-size: 2px;
            color: white;
            padding: 2px;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.5);
        }

        /* Header */
        header {
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            text-align: center;
            padding: 20px;
        }

		h1 {
			font-size: 26px;
			margin-bottom: 4px;
			color: #fff; /* Mengubah warna teks menjadi putih */
		}


        /* Container */
        .container {
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 4px;
            margin: 20px;
        }

        /* Daftar Berita */
        .news-list {
            list-style-type: none;
            padding: 0;
        }

        .news-item {
            margin-bottom: 20px;
            padding: 20px;
            background-color: white;
            border-radius: 4px;
        }

        .news-title {
            color: #333;
            font-size: 24px;
            margin-bottom: 4px;
        }

        .thumbnail {
            width: 100px;
            height: auto;
            margin-right: 4px;
            float: left;
        }

        .news-content {
            /* Gaya untuk konten berita */
        }

        /* Header Appbar */
        .header__appbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4px 20px;
            background-color: rgba(0, 0, 0, 0.5);
            position: fixed;
            width: 10%;
            top: 0;
        }

        .header__appbar--left {
            flex: 1;
        }

        .site-logo {
            width: 100px;
            height: auto;
        }

        .header__appbar--right {
            display: flex;
            align-items: center;
        }

        .reaction-emojis {
            margin-right: 20px;
        }

        .reaction-emojis img {
            margin-right: 4px;
        }        
		ul li a{
    		font-size: 8px;
		}
		ul li {
    		font-size: 4px;
		}
		ul ul li {
    		font-size: 5px;
		}
/* about.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.about-section, .team-section {
    margin-bottom: 40px;
}

h2 {
    color: #333;
}

p {
    color: #555;
}

.team-member {
    margin-top: 20px;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}
