.color-palette {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#color-palette {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

#title {
  font-size: 2.5rem;
  text-align: center;
}

#button-random-color {
  margin-bottom: 10px;
}

.color {
  display: inline-block;
  border: black solid 1px;
  width: 40px;
  height: 40px;
  border-radius: 5%;
  margin-right: 1%;
  margin-left: 1%;
}

.color1 {
  background-color: black;
}

.color2 {
  background-color: red;
}

.color3 {
  background-color: green;
}

.color4 {
  background-color: blue;
}

.change-board {
  margin: 10px;
}

.pixel-board {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#pixel-board {
  width: 200px;
  height: 200px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pixel {
  width: 40px;
  height: 40px;
  border: 1px solid black;
  box-sizing: border-box;
}

