        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            /*background: ""./Srs_44LogoV2.png"; /*#1E1E1E*/
            color: rgb(255, 255, 255);
            overflow: hidden;
            scroll-behavior: smooth;
            overflow: scroll;
            margin: 0; /* Entfernt den Standardabstand */
            height: 100vh; /* Stellt sicher, dass der Body die ganze Höhe hat */
            background-image: url('Srs_44LogoV2.png'); /* Ersetze 'bild.jpg' mit dem Pfad zu deinem Bild */
            background-size: cover; /* Skaliert das Bild, damit es die gesamte Fläche bedeckt */
            background-position: center; /* Zentriert das Bild */
            background-repeat: no-repeat; /* Verhindert das Wiederholen des Bildes */
        }



        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/



        /* Navigation */
        .navbar {
            background: rgba(75, 75, 75, 0.825);
            display: flex;
            justify-content: space-between;
            padding: 20px 50px;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffffff;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: #5865F2;
        }

        /* Header */
        .header {
            text-align: center;
            padding: 150px 20px 50px;
            font-size: 50px;
            font-weight: bold;
        }



        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/


        /* Button */
        .cta {
            text-align: center;
            margin: 3%;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            gap: 10%;
        }

        .cta h1{
            text-align: center;
            margin-top: 5px;
            margin-bottom: 20px;
            font-size: 30px;
        }

        .cta button {
            padding: 15px 30px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
            margin: 10px;
        }

        .button1 {
            background: #5865F2;
            color: white;
            box-shadow: 0px 0px 15px rgba(88, 101, 242, 0.6);
        }

        .button1:hover {
            background: #4752C4;
        }

        .button2 {
            background: #205fe6a6;
            color: rgb(255, 255, 255);
        }

        .button2:hover {
            background: #e0e0e0;
        }



/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/



        /* Animierter Hintergrund */
        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
        }

        .bubble {
            position: absolute;
            background: rgba(88, 101, 242, 0.6);
            border-radius: 50%;
            opacity: 0.7;
            animation: float 10s infinite linear;
        }

        @keyframes float {
            from {
                transform: translateY(100vh);
            }
            to {
                transform: translateY(-10vh);
            }
        }



/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/



        /* Footer */
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(75, 75, 75, 0.825);
            text-align: center;
            padding: 15px;
            font-size: 14px;
        }




/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/




        /* TOS Teil */
        .tos h2 {
            text-align: center;
            font-size: 50px;
            margin-bottom: 10px;
        }



/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/



.social-media {
    text-align: center;
    margin: 3%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    gap: 10%;
  }
  
  .social-media h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .social-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    background-color: #333;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .youtube {
    background-color: #c4302b;
  }
  
  .twitch {
    background-color: #6441a5;
  }
  
  .instagram {
    background-color: #c13584;
  }
  
  .github {
    background-color: #2b3137;
  }

  .tiktok {
    background-color: #ff0050;
  }

  .discord {
    background-color: #5865f2;
  }
  
  .social-button:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  
  .social-button i {
    margin: 0;
  }


/* Design für Seiteninhalt:

        text-align: center;
        margin: 3%;
        padding: 30px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 10px;
        gap: 10%;
            
            
*/