/* Hintergrundbild für die gesamte Seite */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('background.jpg'); /* Pfad zum Hintergrundbild anpassen */
    background-size: cover;   
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif; /* Fallback */
    color: #fff; /* Weißer Text für bessere Lesbarkeit */
}

/* Überschrift zentrieren und stilisieren */
header h1 {
    text-align: center;
    color: #fff; 
    margin-bottom: 0px;
    font-size: 4rem;
    font-family: 'Uncial Antiqua', cursive; /* Typisch irische Schrift */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7); /* optionaler Schatten */
    background-color: rgba(0, 155, 58, 0.6); /* halbtransparentes irisches Grün */
    backdrop-filter: blur(5px); /* unscharfer Hintergrund */
    -webkit-backdrop-filter: blur(5px); /* Safari-Unterstützung */
    
    padding: 15px 25px; /* Innenabstand für Lesbarkeit */
    border-radius: 10px; /* leicht abgerundete Ecken */
}

/* Zentriertes Hauptbild */
.center-image {
    max-width: 80%;    
    height: auto;      
    margin-bottom: 20px;
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
}

/* Link-Styling */
.links {
    display: flex;
    gap: 20px;
}

.links a {
    text-decoration: none;
    color: #fff;
    background-color: rgba(0,0,0,0.5); 
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.links a:hover {
    background-color: rgba(255,255,255,0.3);
}

/* Responsive Anpassung für kleine Bildschirme */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
        padding: 10px 15px;
    }

    .center-image {
        max-width: 95%;
    }

    .links {
        flex-direction: column;
        gap: 10px;
    }
}
