.logo-container {
    width: 100%;
    padding: 15px 0;
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.rolling-logo {
    width: 74px;
    height: auto;
    /*animation: rollLogo 20s linear infinite;*/
    transform-origin: center;
}

.rolling-logo path {
    animation: changeColor 10s linear infinite;
}

#logo-template {
    display: none;
}

@keyframes rollLogo {
    0% {
        transform: translateX(-100px) rotate(0deg);
    }

    100% {
        transform: translateX(100vw) rotate(1440deg);
    }
}

@keyframes changeColor {
    0% {
        fill: #242924;
    }

    15% {
        fill: #6979b7;
    }

    30% {
        fill: #6979b7;
    }

    45% {
        fill: #e41f33;
    }

    60% {
        fill: #e41f33;
    }

    75% {
        fill: #FFC107;
    }

    85% {
        fill: #FFC107;
    }

    100% {
        fill: #242924;
    }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 20px clamp(14px, 4vh, 48px);
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.5;
}

.hero-content h1 {
    margin: 0 0 6px;
    font-size: 2rem;
}

.hero-content h2 {
    margin: 0 0 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-content h3 {
    margin: 28px 0 20px;
}

.credits-container {
    max-width: 640px;
    margin-top: 28px;
    padding-block: 26px;
}

.story-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background-color: transparent;
    color: #e70c84b4;
    text-decoration: none;
    border: #e70c84b4 solid 2px;
    border-radius: 10px;
    font-weight: 600;
}

.story-button:hover {
    background-color: #e70c8436;
}

.credits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    line-height: 1.6;
}

.role,
.role-multi {
    font-weight: 700;
    color: #555;
}

.name,
.name-multi {
    font-weight: 400;
    text-align: right;
}

@media (max-width: 640px) {
    .credits-grid {
        grid-template-columns: 1fr;
        gap: 2px 0;
    }

    .name,
    .name-multi {
        text-align: left;
        margin-bottom: 8px;
        color: #242924;
    }
}

.supporters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.supporters>div {
    display: grid;
    align-items: start;
}

.supporters img {
    max-width: 220px;
    max-height: 100%;
    display: block;
    align-self: end;
}