.creators {
    margin: 30px auto;
    width: 600px;
}

.creator-item {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin: 20px 0;
    border-radius: 20px;
    color: #fff;
    font: bold 18px Arial, sans-serif;
    text-align: left;
    transition: transform 0.3s, opacity 0.3s;
}

.creator-item:hover {
    opacity: 0.7;
    transform: translateY(-5px);
}

.creator-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #fff;
    flex-shrink: 0;
}

.creator-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.creator-name {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: bold;
}

.creator-thanks {
    font-size: 15px;
    font-style: italic;
    color: #ccc;
}
