body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    background-color: #d84f4f;
    flex-direction: column; 
    min-height: 100vh;
}

h2 {
    text-align: center;
}

.container {
    display: grid;
    grid-template-columns: 1fr 4fr 1.5fr;
    grid-gap: 20px;
    padding: 20px;
    flex-grow: 1; 
}

.sidebar1 {
    background-color: #f9b5b5;
    padding: 15px;
    position: sticky; 
    top: 20px; 
    z-index: 10;
    border: 2px;
    border-radius: 8px;
}

.artikel {
    background-color: #ffdada;
    padding: 15px;
    text-align: justify;
    height: 120vh; 
    overflow-y: auto; 
}

.sidebar2 {
    background-color: #f9b5b5;
    padding: 15px;
    position: sticky; 
    top: 20px; 
    z-index: 10;
    border: 2px;
    border-radius: 8px;
}

.produk-promo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.produk {
    border: 2px solid #700808;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s;
}

.produk:hover {
    transform: scale(1.05);
}

.produk img {
    width: 70%;
    height: auto;
}

.produk h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.produk p {
    text-align: center;
}

.headernavbar {
    position: sticky; 
    top: 0; 
    z-index: 100; 
}

.headernavbar header {
    background-color: #b1ec93;
    color: #3c0505;
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0; 
    z-index: 100; 
}

footer {
    text-align: center;
    padding: 5px;
    background-color: #b1ec93;
    color: #3c0505;
}

.photo-container {
    display: flex;
    justify-content: center;  
    align-items: center;     
    height: auto;           
    width: 20s;             
}

.photo-container img {
    max-width: 20s;        
    height: auto;           
}
