/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(fonts/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(fonts/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
}

body{
    background-color: transparent;
    margin: 0;
    padding: 0;
    position: static;
    background: url('BannerYoutube-modified.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100vw;
}

.content {
    margin: 0;
    margin-bottom: 60px;
    font-family: Poppins, sans-serif;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 100px;
    min-height: 100vh;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 0 15px rgba(22,91,237,0.5);
    margin-bottom: 20px;
}

.main-title {
    font-size: 60px;
    font-weight: bolder;
    color: rgba(0,161,248,1);

}

.creator-title{
    font-size: 25px;
    font-weight: bolder;
    color: white;
    margin-bottom: 20px;
}


.link-button {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    background-color: white;
    color: #000;
    width: 400px;
    padding: 15px 30px;
    border-radius: 30px;
    margin: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(22,91,237,0.5);
}

.link-button img {
    width: 24px;
    height: 24px;

}

.border {
    border: solid;
    border-color: rgba(0,161,248,1);
}

.link-button:hover {
    background-color: rgba(0,161,248,1);
    color: white;
    transform: scale(1.15);
}

.line {
    width: 700px;
    height: 3px;
    background-color: white;
    margin: 30px auto 10px auto;
    transition: all 0,3s ease;
}

.email-button {
    width: 80px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none; /* wichtig für <a> */
}

    .email-button:hover {
        background-color: rgba(0,161,248,1);
        color: white;
        transform: scale(1.15);
    }

.email-button img {
    width: 40px;
    height: 40px;
}

.title {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

@media (min-width: 10px) {
    .link-button{
        width: 150px;
    }

    .line {
        width: 200px;
    }
}

@media (min-width: 100px) {
    .link-button{
        width: 200px;
    }

    .line {
        width: 300px;
    }
}

@media (min-width: 200px) {
    .link-button{
        width: 250px;
    }

    .line {
        width: 400px;
    }
}

@media (min-width: 500px) {
    .line {
        width: 500px
    }
}

@media (min-width: 600px) {
    .link-button {
        width: 400px;
    }

    .line {
        width: 550px;
    }
}

@media (min-width: 800px) {
    .line {
        width: 700px;
    }
}