body, html {
    height: 250%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
    background-image: url('background.png'); /* Gantikan dengan URL imej anda */
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header, main, footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding-bottom: 10px;
}

section {
    margin-bottom: 20px;
}

h1, h2, h3 {
    color: #333;
}

ul {
    padding-left: 20px;
}

footer {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

a {
    text-decoration: none;
    color: #0066cc;
}

footer {
    margin-top: auto;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #000; /* Warna teks hitam */
}

footer a {
    color: #000; /* Warna teks tetap hitam */
    text-decoration: none;
}

/* Media Query untuk Telefon */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .country-container img, 
    .other-region img {
        width: 120px;
    }

    .other-region {
        font-size: 1.2rem;
    }

    footer {
        font-size: 0.8rem;
    }
}