		@font-face {
			 font-family: 'RobotoReg';
			 src: url(../Fonts/Roboto/static/Roboto-Regular.ttf);
			}
		@font-face {
			 font-family: 'RobotoExLight';
			 src: url(../Fonts/Roboto/static/Roboto-ExtraLight.ttf);
			}
		@font-face {
			 font-family: 'RobotoLight';
			 src: url(../Fonts/Roboto/static/Roboto-Light.ttf);
		}
		@font-face {
			 font-family: 'RobotoMedium';
			 src: url(../Fonts/Roboto/static/Roboto-Medium.ttf);
			}

        body {
            font-family: RobotoReg, sans-serif;
            padding: 20px;
            max-width: 800px;
            margin: auto;
        }
		
		.header {
			margin-bottom: 80px;
		}
		
		main {
		}
		
        .container {
            background-color: #ffffff;
            padding: 15px;
        }

		h1, h2, h3, h4 {
			font-family: 'RobotoExLight';
			text-transform: uppercase;
			font-size: 1.75rem;

		}

        p {
            font-size: 1rem;
            color: #333;
        }
		
		ul {
            list-style-type: none;
            padding: 0;
        }
        li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        li img {
            width: 200px;
            height: auto;
            margin-right: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
		
        a {
            color: #0066cc;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
			

		.grid {
		  display: grid;
		  grid-template-columns: repeat(3, 1fr); /* Drei gleich große Spalten */
		  gap: 50px; /* Abstand zwischen den Elementen, kannst du anpassen */
		}
	
		  .grid img {
			width: 100%;
			height: auto;
		  }


/* Styles für kleine Bildschirme (z.B. Smartphones) */
@media (max-width: 767px) {
		.grid {
		  display: grid;
		  grid-template-columns: repeat(2, 1fr); /* Zwei gleich große Spalten */
		  gap: 25px; /* Abstand zwischen den Elementen, kannst du anpassen */
		}
}



	