body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(45deg, #cccccc, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    font-family: Arial, sans-serif;
    color: #007BFF;
    margin: 0;
    padding: 20px;
    position: relative;
}

@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(45deg, #000000, #222222);
        animation: gradientBG 10s ease infinite;
        color: #00CBFF;
    }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.profile img {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    padding: 6px;
    border: 3px solid transparent;
    background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
    background-size: 400% 400%;
    background-clip: padding-box;
    animation: rainbowBorder 6s linear infinite;
}

@keyframes rainbowBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.profile p {
    max-width: 600px;
    font-size: 1.2em;
    margin-top: 10px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    max-width: 400px;
    padding: 10px;
    margin: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    transition: 0.3s;
    background-clip: border-box;
}

.button div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button img {
    height: 24px;
}

@media (max-width: 600px) {
    .button {
        width: 90%;
    }
}


#bsky { background: #1185FE; }
#discord { background: #5865F2; }
#mastodon { background: #6364FF; }
#tfnet { background: #821655; }
#reddit { background: #FF4500; }
#insta { background: #E4405F; }
#telegram { background: #0088cc; }
#github { background: #181717; }
#strecken { background: #00A67E; }

#bsky:hover, #discord:hover, #mastodon:hover, #tfnet:hover, #reddit:hover, 
#insta:hover, #telegram:hover, #github:hover, #strecken:hover {
    background: #808080; 
    transform: scale(1.05); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; 
}


#bsky, #discord, #mastodon, #tfnet, #reddit, 
#insta, #telegram, #github, #strecken {
    transition: background 0.3s ease;
}

h1 {
    background: #007BFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5em;
    font-weight: bold;
}

h2 {
    font-size: 2em;
}

#bsky, #discord, #mastodon, #tfnet, #reddit, #insta, #telegram, #github, #strecken {
    padding: 10px;
    border-radius: 25px;
    color: white;
}

hr {
    border: none;
    height: 2px;
    background-color: #007BFF;
    width: 80%;
    margin: 20px auto;
}

