body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('img/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f4f4f4; /* Fallback für den Fall, dass das Bild nicht geladen wird */
}

header {
    background-color: rgba(76, 175, 80, 0.24); /* Transparenter Hintergrund für besseren Kontrast */
    color: white;
    padding: 20px;
    text-align: center;
}

#app-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.app-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 15px 5px rgb(255 255 255 / 85%);
    margin: 15px;
    width: 300px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.app-card h2 {
    font-size: 24px;
    margin: 15px 0;
}

.app-card p {
    padding: 0 15px;
    color: #333;
}

.app-card .version {
    background-color: #ddd;
    padding: 5px;
    font-size: 12px;
    color: #666;
}

h1 {
  color: white;
  font-size: 48px;
  text-shadow: 5px 5px 15px #000, /* 3D-Effekt Schatten */
               5px 5px 15px rgba(0,0,0,0.3); /* Zweiter, transparenter Schatten */
    font-family: "Sofadi One", system-ui;
    font-weight: 400;
    font-style: normal;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 4px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #6893df;
    text-decoration: none;
}
