/* fake inspirational text */
#banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    font-size: 2em;
}
#banner .badInspiration {
    color: white;
    text-align: center;
    margin-bottom: 1em;
}
#banner .bannerButton {
    width: fit-content;
    padding: 0.2em 1em;
    border: 4px solid white;
    transition: padding 500ms cubic-bezier(1, 0.1, 0.1, 1);
}
#banner .bannerButton:hover {
    padding: 0.2em 2em;
    background-color: white;
    color: black;
}
@media (max-width: 1000px) {
    #banner {
        font-size: 3em;
    }
}

/* #container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 16px;

    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    padding: 10px;
    padding-top: 100px;
}
#container img {
    max-width: 100%;
} */