body::before {
    
    color: white;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./Kosovo Map.png');
    background-repeat: repeat-y;   
    background-size: cover;
    background-position: center;
    z-index: -1;  
    
}
h1 {
  font-family: Arial, Helvetica, sans-serif;
}




nav {
    background-color: #429ef5;
    padding: 20px;
}

nav h1 {
    color: white;
    margin: 0;
    font-size: 36px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

nav ul li a:hover {
    color: yellow;
    text-decoration: underline;
}

main {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color:  rgb(200, 200, 200);
    margin: 30px 0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    gap: 20px;
}

.text-box {
    flex: 1;
    color: black;
}

.text-box h3 {
    margin-top: 0;
    font-size: 24px;
    color: white; 
    background-color: rgb(200, 200, 200);
    font-family: Arial, Helvetica, sans-serif;
}

.text-box p {
    line-height: 1.6;
    font-size: 16px;
    color: white;
    background-color: rgb(200, 200, 200);
    font-family: Arial, Helvetica, sans-serif;
}

.image-placeholder {
    flex: 1;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

footer {
    background-color: #429ef5;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    margin-top: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

