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

		img {
			display: block;
			margin: 0 auto;
			max-width: 90%;
			height: auto;
		}

        header {
            background: red;
            color: white;
            padding: 1em;
            text-align: center;
			
        }
		header h1 {
            font-size: 2.2rem;
            color: white;
            
			
        }

        nav {
            display: flex;
            justify-content: center;
            background: yellow;
        }

        nav a {
            color: black;
            padding: 1em;
            text-decoration: none;
        }

        nav a:hover {
            background: red;
        }

       

        .main {
            flex: 4;
            padding: 1em;
        }

        .sidebar {
            flex: 0;
            background: #f4f4f4;
            padding: 1em;
        }

        footer {
            background: red;
            color: white;
            text-align: center;
            padding: 1em;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                flex-direction: row;
            }

            .container {
                flex-direction: column;
            }
        }



/*  CSS für Programmablauf */

        .container{
            max-width:1000px;
            margin:40px auto;
            padding:0 20px;
        }

        .timeline{
            background:white;
            border-radius:14px;
            box-shadow:0 4px 12px rgba(0,0,0,0.1);
            overflow:hidden;
        }

        .event{
            display:flex;
            gap:20px;
            padding:22px 25px;
            border-bottom:1px solid yellow;
            align-items:flex-start;
        }

        .event:last-child{
            border-bottom:none;
        }

        .time{
            min-width:130px;
            font-weight:bold;
            color:red;
            font-size:18px;
        }

        .description{
            font-size:17px;
            line-height:1.5;
        }

        .highlight{            
            font-weight:bold;
			
			 padding:4px 8px;
			  border-radius:6px;
			  display:inline-block;
        }

        @media(max-width:700px){
            .event{
                flex-direction:column;
                gap:8px;
            }

            .time{
                min-width:auto;
            }

            header h1{
                font-size:32px;
            }
        }


a[href^="http:"]:after, a[href^="https:"]:after{content:url(../img/external.png);vertical-align:bottom;padding-left:5px;}





:root { --bg: #f5f7fa; --card: #ffffff; --text: #222; --muted: #666; --accent: red; --border: yellow; } * 
{ box-sizing: border-box; } 

body { 
margin: 0; 
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
background: var(--bg); 
color: var(--text); 
line-height: 1.7; } 


.card { 
background: var(--card); 
border-radius: 14px; 
padding: 40px; 
box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05); 
border: 1px solid var(--border); } 

h1 { 
font-size: 2.2rem; 
margin-top: 0; 
margin-bottom: 30px; 
color: var(--accent); } 
h2 { 
margin-top: 40px; 
margin-bottom: 10px; 
font-size: 1.3rem; 
color: var(--accent); 
border-bottom: 1px solid var(--border); 
padding-bottom: 8px; } 
h3 { 
margin-top: 25px; 
color: var(--text); } 
p { 
margin: 10px 0; } 
address { 
font-style: normal; 
margin: 15px 0; } 
a { 
color: var(--accent); 
text-decoration: none; } 
a:hover { 
text-decoration: underline; } 
ul { 
padding-left: 20px; } 
.muted { 
color: var(--muted); 
font-size: 0.95rem; } 
footer { 
margin-top: 50px; 
padding-top: 20px; 
border-top: 1px solid var(--border); 
font-size: 0.9rem; color: var(--muted); } 

@media (max-width: 640px) { .card { padding: 24px; } h1 { font-size: 1.8rem; } }