
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow-x: hidden;
            font-family: Helvetica, sans-serif;
            background-color: black;
        }

        #header {
            position: relative;
            width: 100%;
            height: 95vh;
            background-image: url('coltaine.jpg');
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: top center; /* Bild wird oben im Container zentriert */
        }

        #links-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 20px 40px; /* Größerer horizontaler Abstand oben und unten, 40px für den Seitenrand */
            box-sizing: border-box;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        #links-container a:first-child {
            margin-left: 20px; /* Zusätzlicher Abstand für den ersten Link */
        }

        #links-container a:last-child {
            margin-right: 20px; /* Zusätzlicher Abstand für den letzten Link */
        }

        @media only screen and (max-width: 768px) {
            #header {
                height: 30vh; /* Adjusted height for smaller screens */
            }

            #links-container {
                display: none; /* Verberge den Links-Container in der mobilen Ansicht */
            }

            #logo {
                background-color: black;
                padding: none;
                display: flex;
                justify-content: center;
            }
            
            #mobilelinks-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 0px 20px 70px 20px; /* Add space between the Header and Links containers */
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }

            #mobilelinks-inner-container {
                display: flex;
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 5px; /* Adjust gap between links */
                align-content: center;
                flex-direction: column;
                align-items: center;
                
            }

            #mobilelinks-inner-container a {
                color: #7B7B7B; /* Ändern Sie die Farbe der Links nach Ihren Wünschen */
                text-decoration: none;
                transition: color 0.3s, transform 0.3s;
                font-size: 13px;
                padding: 0px 10px 25px 10px; /* Adjusted padding */
            }

            #about-inner-container {
                min-width: 65%; /* Setze die maximale Breite auf 65% der Bildschirmbreite in der mobilen Ansicht */
                margin: 0 auto; /* Zentriere den Container horizontal */
            }
            
            #about-inner-container p {
                margin: 0;
                font-size: 14px;
            }
            
            #contact {
                position: relative;
                margin-top: 20px; /* Add space between the About and Contact containers */
            }

            #contact-inner-container {
                width: 80%; /* Adjusted width for mobile view */
                margin: 0 auto; /* Center the inner contact container */
            }
        }

        a {
            color: #CCCCCC;
            text-decoration: none;
            transition: color 0.3s, transform 0.3s;
            font-size: 13px;
            padding: 10px 15px; /* Adjusted padding */
        }

        a:hover {
            color: white;
            transform: scale(1.05);
        }

        #container {
            color: #777777;
            padding: 0px;
            text-align: center;
        }


        #about-container {
            background-color: black;
            padding: 0px 0px 100px 0px;
            color: #CCCCCC;
            line-height: 1.5;

        }

        #about-inner-container {
            max-width: 25%; /* Adjusted max-width */
            margin: 0 auto;
            text-align: center;
            padding: 0px;
            color: #7b7b7b; /* Ändern Sie die Textfarbe auf Weiß */
            font-size: 16px; /* Ändern Sie die Schriftgröße auf 16px */
            font-style: italic; /* Fügt kursiven Stil hinzu */
        }


        #about-inner-container p {
            margin: 0;
        }
        
        #contact {
            background-color: black;
            color: #CCCCCC;
            text-align: center;
            font-size: 12px;
            padding: 0px 0px 20px 0px ;
        }

        #contact-inner-container {
            max-width: 80%; /* Adjusted max-width for mobile view */
            margin: 0 auto; /* Center the inner contact container */
        }

        @media only screen and (min-width: 768px) {

            
            #mobilelinks-container {
                display: none;
            }

            #logo {
                background-color: black;
                padding: 30px;
                display: flex;
                justify-content: center;
            }


        }