* {
  margin: 0;
  padding: 0;
  background-color: rgb(127, 204, 255);
  text-align: center;
}

#title {
  font-family: sans-serif;
  text-align: center;
  padding: 20px;
}

#color-palette {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.color {
  width: 40px;
  height: 40px;
  border: 1px solid black;
  display: inline-block;
  cursor: pointer;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
}

#button-random-color {
  width: 80px;
  height: 42px;
  cursor: pointer;
  background-color: white;
}

#clear-board {
  width: 80px;
  height: 42px;
  cursor: pointer;
  background-color: white;
}

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

#pixel-board {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

footer {
  padding: 10rem;
}