.container {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url("/assets/grass.png");
    background-size: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #24a387;
    border-radius: 4px;
    margin: 0 auto;
    box-shadow: 0px 0px 8px #222;
    height: fit-content;
    text-align: center;
    width: 100%;
}

#credits-wrapper {
    background-color: #ec7e2f;
}

.about-wrapper span {
    font-family: 'mythMono';
    font-size: 32px;
    color: white;
    padding: 8px 2px 0px;
    border-radius: 4px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
}

#about {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
        url("/assets/grass.png");
    background-size: 48px;
    margin: 16px;
    font-size: 20px;
    border-radius: 4px;
    padding: 20px;
    line-height: 28px;
    text-wrap: balance;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #222;
    text-shadow: 0px 0px 8px #fff;
}

#credits-wrapper #about {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
        url("/assets/sand.png");
}

#credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-size: 24px;
    font-family: 'mythMono';
}

#credits h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

#credits ul {
    margin: 0;
    column-count: 3;
    column-gap: 60px;
    padding: 0;
}

#credits li {
    list-style: none;
    list-style-position: inside;
    padding: 0;
}

#credits p {
    margin: 6px 0 0;
    font-size: 28px;
}
@media (max-width: 800px) {
    #credits ul {
    margin: 0;
    column-count: 1;
    padding: 0;
}
}
