body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: white;
  background-image: url('Kosovo\ Map.png'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

nav {
  background-color: #429ef5;
  padding: 20px;
}

nav h1 {
  margin: 0;
  font-size: 32px;
  color: white;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin-top: 10px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav ul li a:hover,
nav ul li a.active {
  color: yellow;
  text-decoration: underline;
}

main {
  padding: 40px;
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.welcome-box h2 {
  background-color: rgba(200, 200, 200);
  backdrop-filter: blur(4px);
  color: white;
  padding: 15px 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.content-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: rgb(200, 200, 200);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(4px);
  gap: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  max-width: 1000px;
}

.text-box {
  max-width: 600px;
}

.text-box p {
  background-color: rgb(200, 200, 200);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  color: white;
}

.image-placeholderino {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  height: auto;
}
.image-placeholder {
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  height: auto;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer {
    background-color: #429ef5;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    margin-top: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

