body {
    background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTLUKoquAhTcLABLnqn8eP88pl56iUAjhSwbA&s);
    background-size: cover;
    background-attachment: fixed; /* Biar background gak ikut kegulung */
    font-family: Arial, sans-serif;
}

h2, h4 {
    text-align: center;
    color: white; /* Biar kontras ama background gelap */
    text-shadow: 2px 2px 4px black;
}

img {
    display: block;
    margin: 20px auto;
    border: 5px solid rgb(0, 153, 255);
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgb(0, 153, 255);
    transition: transform 0.3s; /* Biar ada efek pas di-hover */
}

img:hover {
    transform: scale(1.05);
}

h3 {
    text-align: center;
    padding: 10px;
    color: steelblue;
    background: rgba(255, 255, 255, 0.7); /* Background transparan biar teks kebaca */
}

/* Navigasi lebih rapi */
nav {
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    padding: 10px;
}

nav a {
    text-decoration: none;
    color: rgb(0, 153, 255);
    padding: 10px 20px;
    font-size: 20px;
    transition: 0.3s;
}

nav a:hover {
    background-color: burlywood;
    color: black;
    border-radius: 5px;
}

/* Penempatan Produk */
.items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.item {
    background-color: rgba(220, 220, 220, 0.9);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* Tabel biar gak pusing bacanya */
table {
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.9);
}

table, tr, th, td {
    border: 2px solid #333;
    border-collapse: collapse;
    color: rgb(47, 148, 34);
    padding: 10px;
}

th {
    background-color: #eee;
}

/* Footer & Gimmick */
.gibran {
    background-color: lightblue;
    padding: 10px;
}

.jawa {
    background-color: lightblue;
    margin: 50px auto;
    border: 5px solid red;
    padding: 20px;
    width: fit-content;
}

/* Pricing Tab (Kotak di bawah) */
.tab {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

footer {
    background-color: rgb(245, 235, 220);
    background-image: linear-gradient(rgb(252, 232, 204)), rgb(197, 141, 137);
}

.main-footer { 
    display: flex;
    justify-content: center;
    width: 100%;
}

.left-footer {
    margin-right: auto; 
    margin-left: 40px;
}

.right-footer {
    margin-left: auto;
    margin-right: 40px;
}

.center-footer {
    margin-left: 20px;
    margin-right: 20px;
}

.info-left {
    color: rgb(219, 84, 75);
    text-align: left;
    width: 100%;
}
.info-right {
    color: rgb(219, 84, 75);
    text-align: right;
    width: 100%;
}

.info-center {
    color: rgb(219, 84, 75);
    text-align: center;
    width: 100%;
    padding-top: 5px;
    border-top: 1px solid rgb(146, 168, 133);
}

.portrait {
    max-width: 100%;
    max-height: 350px;
}

@media (max-width: 600px) {
    * {
        font-size: 2vw;
        margin: 2px;
    }
}