/* Clean Slate */
* {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Font Setup */
@font-face {
    font-family: motherish;
    src: url(/Motherish-Regular.otf);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(16, 16, 24);
    color: seashell;
    font-family: motherish;
}

h1 {
    font-size: 5em;
    text-align: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: fit-content;
    padding: 2em;
}

.bingo-tile {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 4px;
    width: 110px;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.bingo-tile > div {
    line-height: 2.5ex;
    text-align: center;
    align-items: center;
    display:flex;
    height: 5ex;
}

.neutral {
    background-color: rgb(55, 55, 55);
}

.blocked {
    background-color: rgb(59, 26, 26);
}

.active {
    background-color: rgb(58, 78, 56);
}

.image-container {
    flex: 0 0 min-content;
}

.image-container > img {
    width: 64px;
}

.vertical-spacer {
    flex-grow: 1
}

button {
    padding: 1.0rem;
    border-radius: 1rem;
}