CSS für Design (style.css)

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5c77e;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: left;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 0 20px;
}

.navbar a.logo {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.language-switch button {
    background-color: #555;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}

.language-switch button:hover {
    background-color: #888;
}

main {
    padding: 40px 20px;
    text-align: left;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: left;
}

.menu li {
    margin: 0 20px;
}

.menu a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
}

.menu a:hover {
    color: #007bff;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}


