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

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2em;
}

.l2{
    border-radius: 100ch;
    position: absolute;
    width: 60%;
    margin-top: -45ch;
    margin-left: 50ch;
}

.bot{
    border-radius: 100ch;
    position: absolute;
    width: 80%;
    margin-top: -50%;
    margin-left: -180%;
    z-index: 10;
}

.title {
    background-color: rgb(0, 0, 0);
    padding: 0.2%;
    padding-top: 1%;
    margin-top: -51%;
    border-radius: 10px;
    color: white;
    width: 10%;
    margin-left: 80%;
    text-align: center; /* Text zentrieren */
    position: fixed;
    z-index: 4;
}

.title h1 {
    font-size: 150%;
}

.section2 {
    margin-top: 85vh;
    width: 100%;
    height: 100vh;
    position: relative;
    background: linear-gradient(to bottom, #26d3fa, #0011ff);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.wave {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
}

.shape-fill {
    fill: #161616;
}

.section2 h1{
    display: flex;
    justify-content: center;
    color: white;
}

.profile{
    background-color: #232428;
    border-radius: 10px;
    width: 20%;
    height: 64ch;
    margin-left:40%;
    color: white;
    margin-top: 5%;
}

.data-profile{
    background-color: #111214;
    border-radius: 10px;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 1%;
    margin-top: 5%;
    height: 38ch;
    width: 85%;
    margin-left: 3%;
}

.bg-profile{
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    height: 16vh;
}

.logo-profile{
    width: 25%;
    border-radius: 100px;
    border: 8px solid #232428;
    margin-top: -15%;
    margin-left: 3%;
    z-index: 1;
}

.state-profile{
    background-color: #23A55A;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 5px solid #232428;
    margin-top: -10%;
    margin-left: 23%;
    z-index: 2;
    position: relative;
}

.badges-profile img{
    width: 8%;
    background-color: #111214;
    padding: 1%;
    border-radius: 10px;
    margin-left: 86%;
    margin-top: -20%;
}

.data-profile h3{
    font-size: 150%;
    font-weight: 550;
    padding-top: 1%;
}

.data-profile h2{
    padding-top: 6%;
    font-size: 100%;
}

.data-profile a{
    font-size: 80%;
    font-weight: 600;
    background-color: #5865F2;
    padding-left: 1%;
    padding-right: 1%;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
    border-radius: 5px;
}

.line-profile{
    width: 100%;
    height: 1px;
    background-color: gray;
}

.id-profile{
    padding-bottom: 3%;
}

.game-profile{
    padding-top: 4%;
}

.activ-profile{
    margin-top: 10%;
}

.state-1 p{
    font-size: 4em;
    color: white;
    font-weight: 700;
    display: flex;
    justify-content: center;
}

.state-1 h1{
    font-size: 2.5em;
}

.state-2 p{
    font-size: 4em;
    color: white;
    font-weight: 700;
    display: flex;
    justify-content: center;
}

.state-2 h1{
    font-size: 2.5em;
}

.state-2{
    width: 30%;
    position: absolute;
    margin-top: -20%;
    margin-left: 65%;
}

.state-1{
    position: absolute;
    width: 30%;
    margin-top: -20%;
    margin-left: 5%;
}

.data-profile button{
    background-color: #5865f2;
    padding: 3%;
    color: white;
    text-align: center;
    width: 100%;
    border: none;
    margin-bottom: 7%;
    border-radius: 4px;
}

.data-profile button:hover{
    background-color: #616df1;
}



















body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #161616;
}

.burger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu div {
    width: 100%;
    height: 4px;
    background-color: var(--burger-color, rgb(255, 255, 255));
    transition: all 0.3s ease;
    border-radius: 10px;
}

.burger-menu{
    background-color: rgb(0, 0, 0);
    padding: 3ch;
    margin-top: -3ch;
    transition: 0.3s;
    border-radius: 10px;
}

.burger-menu.open{
    margin-left: 20ch;
}

.burger-menu.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--burger-color, white);
}

.burger-menu.open div:nth-child(2) {
    opacity: 0;
}

.burger-menu.open div:nth-child(3) {
    transform: rotate(-45deg) translate(1.5ch, -1.5ch);
    background-color: var(--burger-color, white);
}

.menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #000000;
    color: white;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
}

.menu-container.open {
    transform: translateX(0);
}

.menu-content {
    padding: 20px;
    margin-top: 60px;
}

.menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-list a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 1.5em;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s, color 0.3s;
    box-sizing: border-box;
}

.menu-list a:hover {
    background-color: #30303093;
    color: rgb(214, 214, 214);
}

.on{
  background-color: #424242b0;
}

.socials {
    background: #ffffff00;
    color: white;
    font-size: 5ch;
    padding: 0.5ch;
    margin-top: 21ch;
}

.github{
    color: white;
    padding: 0.5ch;
    transition: 0.2s;
}

.youtube{
    color: white;
    padding: 0.5ch;
    transition: 0.2s;
}

.instagram{
    color: white;
    padding: 0.5ch;
    transition: 0.2s;
}

.github:hover{
    color: rgb(206, 206, 206);
    padding: 0.5ch;
}

.youtube:hover{
    color: rgb(206, 206, 206);
    padding: 0.5ch;
}

.instagram:hover{
    color: rgb(206, 206, 206);
    padding: 0.5ch;
}

 @media (max-width: 768px) {
    .socials {
        margin-top: 40vh;
    }

    .title{
        display: none;
    }

    .l2{
        border-radius: 100ch;
        position: absolute;
        width: 60%;
        margin-top: 6ch;
        margin-left: -22ch;
        z-index: 10;
    }

    .bot{
        border-radius: 100ch;
        position: absolute;
        width: 80%;
        margin-top: -180%;
        margin-left: -6%;
        z-index: 10;
    }

    .profile{
        background-color: #232428;
        border-radius: 10px;
        width: 75%;
        height: 64ch;
        margin-left: 0%;
        color: white;
        margin-top: 5%;
    }

    .p-mobile{
        display: grid;
        justify-items: center;
        padding-bottom: 5vh;
    }

    .section2 {
        height: 105vh;
    }

    .content h2{
        width: 60vw;
    }

    .data-profile{
        height: 40ch;
    }
 }