@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');

#ss-logo006-img {
    position: relative;
    height: auto;
}

.ss-logo006-container {
    font-family: 'Comic Relief', sans-serif;
    text-align: center;
    position: relative;
    height: auto;
}

#ss-logo006-1 {
    font-size: 4rem; /* Größe anpassen */
    font-weight: 900;
    margin: 0;
    line-height: 1.3;
    /* Der Farbverlauf */
    background: linear-gradient(45deg, #f06, #9f6, #06f, #f06);
    background-size: 400%;

    /* Text wird "ausgeschnitten", damit der Hintergrund sichtbar wird */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* Eine kleine Animation für den Farbverlauf */
    animation: gradient-animation 10s infinite alternate;
    text-decoration: none;
}

#ss-logo006-2 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em; /* Buchstabenabstand für "labs" */
    color: #555;
    text-transform: uppercase;
}

/* Keyframe-Animation für den Verlauf */
@keyframes gradient-animation {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 100%;
    }
}

#ss-logo {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 639px) {
    #ss-logo006-img {
        top: -30px;
        left: 10px;
        width: 80px;
    }

    .ss-logo006-container {
        top: -30px;
        left: 20px;
    }
}

@media only screen and (min-width: 640px) {
    #ss-logo006-img {
        top: 0px;
        left: 20px;
        width: 100px;
    }

    .ss-logo006-container {
        top: 10px;
        left: 40px;
    }
}

