.section-header-image img {
    object-fit: contain;
    max-height: 100px;
    height: auto;
    width: auto;
}

.section-header-image {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.credits-grid > div:first-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-content: flex-start;
}

.credits-entry {
    background-color: white;
    border-radius: 20px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    box-shadow: 0 0 5px 1px #000;
    position: relative;
}

.credits-grid-item-image {
    object-fit: contain;
}

.credits-hover-name-hover-target {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(42px);
    transition: transform 0.3s ease;
}

.credits-hover-name-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: black;
}

.credits-hover-name-label {
    color: white;
    margin: 2px;
    font: 1em "FOT-PopHappiness Std";
}

.credits-hover-name-hover-target:hover {
    transform: none;
}

#main-container p {
    font: 1.1em 'FOT-PopJoy Std';
    line-height: 1.3;
}