@charset "utf-8";
/* CSS Document */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    background-color: #000;
}

header {
    background: #000;
    color: #999;
    text-align: center;
    padding: 20px;
}

footer {
    background: #000;
    color: #999;
    text-align: center;
    padding: 20px;
	font-size: 0.7em;
}

nav ul {
    display: flex;
    justify-content: center;
    background: #000;
    list-style: none;
}

nav li {
    margin: 10px;
}

nav a {
    color: white;
    text-decoration: none;
}

main {
	background: #000;
    color: #999;
    text-align: left;
    padding: 20px;
	font-size: 1.2em;
	
	
	
}

/* Smartphone */
@media (max-width: 768px) {

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    header h1 {
        font-size: 1.2em;
    }
}

.grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 20px;
	row-gap: 100px;
    align-items: start;
}

.bild img {
    width: 200;
    height: auto;
}

/* Smartphone */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family:  "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #000;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 15px;
}

.logo {
    color: white;
    font-size: 20px;
}

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
}

.nav li {
    margin-left: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
}

/* Hamburger verstecken (Desktop) */
.hamburger {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}
/* Smartphone */
@media (max-width: 768px) {

    /* Hamburger anzeigen */
    .hamburger {
        display: block;
    }

    /* Menü verstecken */
    .nav {
        display: none;
        width: 50%;
    }

    .nav ul {
        flex-direction: column;
        background: #444;
        margin-top: 10px;
    }

    .nav li {
        margin: 10px 0;
        text-align: center;
    }

    /* Menü sichtbar, wenn aktiv */
    .nav.active {
        display: block;
    }
}
