body {
  font-family: Helvetica, sans-serif;
}

/*  #cabecalho {
    top: 0;
    position: fixed;
    background-color: green;
    color: white;
    padding: 5px;
    border: 1px solid black;
    align-items: center;
    margin-right: 2px;
    width: 100%;
  }
*/

#title {
  align-items: center;
  text-align: center;
}

#options {
  display: flex;
  justify-content: center;
  gap: 16px;
}

#color-palette {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.color {
  border: 1px solid black;
  width: 50px;
  height: 50px;
}

.selected {
  border: 5px solid orangered;
}

#cor1 {
  background-color: black;
}

#cor2 {
  background-color: blue;
}

#cor3 {
  background-color: red;
}

#cor4 {
  background-color: green;
}

#cor5 {
  background-color: white;
}

#pixel-board {
  background-color: aliceblue;
  width: 212px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.pixel {
  border: 1px solid black;
  height: 40px;
  width: 40px;
  display: inline-block;
  background-color: white;
}

.linha {
  max-height: 40px;
  height: 40px;

}

#rodape {
  padding: 3px;
  text-align: center;
  width: 100%;
  background-color: rgb(135, 209, 135);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}
