<style>
        /* Allgemeine Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow-x: hidden;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;

            /* background-image: url('hintergrund.png'); Beispiel-Bild */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-blur: 10%;
            background-repeat: repeat-x;
			background-color: lightgray;
        }

        header {
            text-align: center;
            padding: 20px;
        }

        h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        h2 {
            font-size: 2em;
        }

        h3 {
            font-size: 1.8em;
            margin-bottom: 10px;
        }

        .bottom-span {
            margin-bottom: 50px;
        }

        header p {
            font-size: 1.2em;
        }
		
		.Grid {
			display: grid;
			grid-template-areas: 
					"one two two three"
					"one two two three"
					"one two two three";
			grid-template-rows: auto; 
			height: fit-content;
		}

        .containerleft {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            margin: 20px;

            text-wrap: balance;
			
			grid-area: one;
			
			height: fit-content;
			
			min-width: 245px;
        }
		
		.containerright {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            margin: 20px;

            text-wrap: balance;   
			
			grid-area: three;
			
			height: fit-content;
        }

        .intro {
			padding: 0 20px;
			margin-bottom: 30px;
			border-radius: 8px;
			position: relative;
			margin-top: 20px;

			text-wrap: balance;
			border-radius: 8px;
        } 

        .intro p {
            font-size: 1.2em;
            margin: 20px 0;
        }

        .logo {
          /* display: block;
           margin-left: 20%;
           margin-right: auto;
           width: auto;
		   max-width: 50%;
		   */
		   grid-area: two;
        }

        .open-hours {
            border-radius: 8px;
            text-align: center;
            margin-top: 20px;
			padding: 20px;
        }

        .open-hours ul {
            list-style-type: none;
            font-size: 1.2em;
            margin-left: -15%;
			padding: 0;
			padding-left: 20px;
        }

        .open-hours li {
            margin: 5px 0;
        }

        .location {
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
        }

        .location h3 {
            font-size: 1.8em;
            margin-bottom: 10px;
        }

        .location a {
            text-decoration: none;
            font-size: 1.2em;
        }

        .location a:hover {
            text-decoration: underline;
        }

        .games {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }

        .game {
            width: 30%;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }
		
		.game .left{
			text-align: left;
		}
		.game ul{
			text-align: left;
		}

        .game img {
            max-width: 100%;
            border-radius: 8px;
        }

        footer {
            text-align: center;
            padding: 10px;
            font-size: 0.9em;
            position: fixed;
            bottom: 0;
            width: 100%;
        }

        footer a {
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        .impressum-section {
            margin-bottom: 20px;
        }

        section {
            margin: 20px;
            padding: 20px;
            border-radius: 8px;
			margin-bottom: 80px;
        }
		
		.hidden{
			visibility: hidden;
		}

        /* Responsive Design */
        @media (max-width: 1024px) {
			header{
				margin-bottom: 10px;
			}
            .container, .Grid, .containerleft, .containerright, .games{
                flex-direction: column !important;
                align-items: center !important;
                position: relative;
                width:100%;

                top: 0%;
                right: 0%;
                margin: 0px;
				margin-bottom: 15%;
            }
			
			.containerleft, .containerright, .Grid{
				margin-bottom: 20px;
			}
			
			.Grid {
				display: block;
			}
			
			.logo {
				width: 100%;
			}
			
			.logo img {
				width: inherit;
			}
			
			.intro, .open-hours, .game {
                width: 90%;				
			}

            .intro{
                margin-bottom: 20px;
            }

            .open-hours {
                margin-top: 0px;
                padding: 15px;

                position: relative;
            }

            .open-hours ul {
                list-style-type: none;
                font-size: 1.2em;
                margin-left: 0%;
             }

            .games {
                flex-direction: column;
                align-items: center;
            }

			.location {
				margin-bottom: 18%;
				width: 80%;
				padding: 15px;
			 } 

			 section {
				margin-bottom: 10%;
			 } 
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2em;
            }

            h2 {
                font-size: 1.8em;
            }

            hours h3 {
                font-size: 1.5em;
            }

            ul {
                font-size: 1.1em;
            }
        }
    </style>