body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-image: url('Kosovo\ Map.png'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

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 {
  color: yellow;
}

main {
  padding: 40px;
  max-width: 1600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.content-section {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  background-color: rgba(200, 200, 200);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-top: 15px;
}

.text-box {
  text-align: center;
}

h3 {
  background-color: rgba(200, 200, 200);
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  background-color:rgba(200, 200, 200);
  padding: 10px;
  border-radius: 12px;
  color: white;
  font-size: 16px;
}
footer {
    background-color: #429ef5;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    margin-top: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

