body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-image: url('Kosovo\ Map.png'); /* dein Hintergrundbild */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;   
}
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 > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1600px;
    margin: auto;
}
.content-section {
    background-color: rgb(200, 200, 200); /* halbtransparentes Grau */
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    backdrop-filter: blur(4px); /* Glas-Effekt */
}
.image-placeholder {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 15px;
}
h3 {
    background-color: rgb(200, 200, 200);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    margin: 10px 0;
}

.text-box p {
    background-color: rgb(200, 200, 200); 
    color: white;
    font-size: 16px;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    font-weight: normal;
}
footer {
    background-color: #429ef5;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    margin-top: 40px;
    font-family: Arial, Helvetica, sans-serif;
}
