body {
    background-color: #3e3a3e;
    color: #fafafe;
}

#predtext {
    text-align: center;
}

#gridpredcontainer {
    display: grid;
    grid-template-columns: repeat(2, 138px);
    grid-template-rows: repeat(2, 138px);
    width: fit-content;
    margin: 0 auto;
}

#preds {
    width: 100%;
    font-size: 24px;
    margin: auto;
    margin-left: 25px;
}

#grid {
    border-top: solid 2px black;
    border-left: solid 2px black;
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(4, 32px);
    grid-template-rows: repeat(4, 32px);
    gap: 2px;
    margin: 0 auto;
}

.pixel {
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

input {
    padding-top: 2px;
    grid-column: span 2;
    margin-top: 10px;
}