#title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 0;
}
#title-container p {
    margin: 0;
}
#heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px #ec3750;
    margin: 0;
}
#heading img {
    width: 3rem;
}
#desc {
    text-align: center;
    font-style: italic;
    color: #555555;
}
#stuff {
    margin-left: 1rem;
}
#footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    gap: 1rem;
}
#footer img {
    width: 2rem;
}
#boba-drops {
    padding: 0rem 1rem 1rem 1rem;
    background-color: #f6d193;
    border: 1px solid #603101;
    border-radius: 0.5rem;
}
#boba-label {
    color: #603101;
}
.boba-submissions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
}
.boba-submission {
    /* background-color: #603101; */
    color: black;
    text-align: center;
    padding: 0.5rem;

    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
.boba-submission img {
    width: 12rem;
    height: 12rem;
    align-self: center;
    border-radius: 0.5rem;
}
.boba-submission a {
    color: black;
}