body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #f8f9fa;
    background-image: url('background.png'); /* Gantikan dengan URL imej anda */
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
}

h1 {
    margin-top: 5%;
    font-size: 2.5rem;
    text-align: center;
    color: #FAF9F6;
}

.country-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.country-container img {
    width: 200px;
    max-width: 200px;
    height: auto;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.country-container img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.other-region {
    margin-top: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.other-region img {
    width: 200px;
    max-width: 200px;
    height: auto;
}

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;
    }
}