/*
Theme Name: Free Basic Card
Description: A simple WordPress theme with a clear, mobile-optimized design based on Flex containers.
Version: 1.0
Author: DigiNerd
*/

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #c4c4c4;
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px; /* Anpassen der Logo-Größe */
}

.burger-menu {
    display: block; /* Das Burger-Menü ist standardmäßig ausgeblendet */
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    display: inline-block;
    margin-right: 15px;
}
