* {
    box-sizing: border-box;
}

h1 {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 16px;
    background: linear-gradient(#eb9438, #aa6924) no-repeat fixed;
}

/* Contents */

.title {
    font-size: 48px;
}

.pixel {
    width: 25px;
    height: 25px;
    border: 2px solid black;
    background-color: white;
    flex: none;
}

.row {
    display: flex;
    flex: none;
}

.board {
    display: flex;
    flex-direction: column;
    flex: none;
    border: 2px solid black;

    /* When pixels have low opacity, show white instead of webpage BG color */
    background-color: white;
}

form .text{
    font-weight: bold;
}