body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
    background: url('https://indonesiakaya.com/wp-content/uploads/2020/10/1590_11._Balai_pertemuan_menjadi_tempat_berkumpulnya_masyarakat_Kampung_Adat_Dukuh-1.jpg') no-repeat center center/cover;
    animation: fadeIn 2s ease-in;
}

header,
footer {
    background-color: rgba(44, 62, 80, 0.8);
    padding: 20px;
    animation: fadeIn 2s ease-in;
}

main {
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
    text-align: left;
    animation: fadeIn 2s ease-in;
}

h1,
h2 {
    color: #f1c40f;
}

p,
ul {
    line-height: 1.8;
}

img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}