/* style.css */

/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    background-image: url(../Bilder/frog-4217588_1920.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
}

h1 {
    text-align: center;
	color: #ffff66;
    margin-top: 20px;
    font-size: 2.5em;
    line-height: 1.5;
}

h6 {
    text-align: center;
	color: #ffff66;
    margin-top: 20px;
    font-size: 1em;
    line-height: 1.5;
}

p {
    text-align: center;
	font-size: 2em;
    margin: 20px 0;
}

a {
    color: #FFD700; /* Goldene Links für gute Sichtbarkeit */
    text-decoration: none;
    font-size: 2em;
}

a:hover {
    text-decoration: underline overline dotted yellow;
}

h6 {
    text-align: right;
    font-size: 0.8em;
    line-height: 1.5;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5em;
    }

    a {
        font-size: 1.5em;
    }

    h6 {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
	
	body {
    background-image: url(../Bilder/frog_smart.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    }
	
    h1 {
        font-size: 1.2em;
    }

    a {
        font-size: 1em;
    }

    h6 {
        font-size: 0.6em;
    }
}