body {
    background-image: url(/static/img/guy_decal.png);
    background-repeat: repeat;
    background-size: 64px;
    background-position: -32px -32px;
}

#foreground-container {
    position: fixed;
    margin-left: 5vw;
    margin-top: 5vh;
    width: 90vw;
    height: 90vh;

    border-radius: 15px;
    background-color: #efefef;
}

#foreground-container > h1 {
    text-align: center;
}

#foreground-container > .entries-wrapper {
    height: calc(100% - 130px);
}

#credit-entries {
    height: 100%;
    overflow-x: auto;
    overflow-y: auto;
    padding: 0;
    padding-left: 2rem;
    padding-right: calc(2rem - 20px);
}

#credit-entries > .credit-entry {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #aaa;

}

#credit-entries > .credit-entry:first-child {
    border-top: 2px solid #aaa;
}

#credit-entries > .credit-entry > .credit-author {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40vw;
    max-width: 800px;
    margin-right: auto;
    padding-left: 0.5rem;
}
#credit-entries > .credit-entry > .credit-author .name {
    position: sticky;
    top: 0;
    padding: 2.5px 0;
    background-color: #efefef;
}

#credit-entries > .credit-entry > .credit-author .bio {
    width: 100%;
    word-wrap: break-word;
}

#credit-entries > .credit-entry > .credit-author .links > a {
    float: right;
    margin-left: 1rem;
}

#credit-entries > .credit-entry > .credit-author .links .icon {
    width: 32px;
    height: auto;
}

#credit-entries > .credit-entry > .credit-author .links .icon.twitch {
    filter: var(--svg-twitch-filter);
}

#credit-entries > .credit-entry > .credit-author .links .icon.youtube {
    filter: var(--svg-youtube-filter);
}

#credit-entries > .credit-entry > .credit-author .links .icon.discord {
    filter: var(--svg-discord-filter);
}

#credit-entries > .credit-entry > .credit-author .links .icon.twitter {
    filter: var(--svg-twitter-filter);
}

#credit-entries > .credit-entry > .credit-works {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-left: 1rem;
    min-width: 500px;
    width: 40vw;
    max-width: 800px;
}

#credit-entries > .credit-entry > .credit-works > img {
    width: auto;
    min-height: 100px;
    height: 15vh;
    max-height: 200px;
    float: right;
    margin-right: 10px;
    margin-bottom: 10px;
}

#back-button {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: transparent;
    border: none;
}

#back-button > img.icon {
    width: 24px;
    height: auto;
}