@font-face {
    font-family: 'NewRudaw';
    src: url('../fonts/NewRudaw-Bold.html') format('truetype');
    /* Add additional font variations if applicable */
}

body {
    margin: 0;
    font-family: 'NewRudaw';
    background-color: #070602ad; /* White background color */
    color: #000000; /* Black text color */
    direction: rtl; /* Right to left direction */
    text-align: right; /* Right align text */
}

footer {
    background-color: #035a8d; /* Dark blue background color */
    color: #ffffff; /* White text color */
}

.container {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;
    padding: 20px;
}

.content {
    padding: 20px;
    width: 60%;
    margin: auto; /* This will center the content horizontally */
    margin-top: 20px; /* Space between header and content */
    margin-bottom: 20px; /* Space between content and footer */
}

.content h1 {
    color: #FFD700; /* Gold color for "Welcome to Kurdish City" heading */
}

.content h2 {
    color: #1E90FF; /* Dodger blue color for "About Our Server" and "Why Kurdish City Stands Out" headings */
}

/* Language Selection Popup */
.language-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
}

.language-popup h2 {
    color: #ffffff; /* White text color */
    margin-bottom: 20px;
}

.language-popup .flags {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.language-popup .flag {
    cursor: pointer;
    transition: transform 0.3s;
}

.language-popup .flag:hover {
    transform: scale(1.1);
}

/* Media query for small screens (phones) */
@media screen and (max-width: 480px) {
    .content {
        width: 100%; /* Adjust width for small screens */
        padding: 10px; /* Reduce padding for small screens */
    }

    .content h1 {
        font-size: 1.5em; /* Adjust heading size for small screens */
    }

    .content h2 {
        font-size: 1.2em; /* Adjust subheading size for small screens */
    }
}
