* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
            height: 100%; /* Setze die Höhe auf 100% */
            margin: 0; /* Entferne Standard-Margin */
        }

        body {
            display: flex;
            flex-direction: column; /* Verwende Flexbox, um den Footer am Ende zu halten */
			font-family: Arial, sans-serif;
			line-height: 1.6;
			background-color: #f4f4f4;
			color: #333;
        }

        section {
            flex: 1; /* Erlaubt diesen Elementen, den verfügbaren Platz einzunehmen */
        }

header {
    background: #228B22;
    color: white;
    text-align: center;
    padding: 1rem;
}

/* Logo Styling */
.logo {
    width: 150px; /* Passe die Größe nach Belieben an */
    height: auto;
    display: block;
    margin: 0 auto 10px; /* Zentriert das Logo und fügt einen Abstand zum Titel hinzu */
}


nav {
    background: #333;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

nav ul li a:hover {
    color: #FFD700;
}

section {
    padding: 2rem;
    margin: 2rem 0;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 1rem;
    color: #228B22;
}

.raceresult-widget {
    margin-top: 1rem;
    width: 100%;
    height: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    position: static;
    width: 100%;
    bottom: 0;
}

footer a {
    color: inherit; /* Nimmt die Standardfarbe des Textes an */
    text-decoration: none; /* Entfernt die Unterstreichung */
}

footer a:hover {
    text-decoration: underline; /* Optional: Unterstreicht die Links, wenn man mit der Maus darüber fährt */
}






