* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu";
}

header {
  height: 260px;
  background-color: #2a9d8f;
  border: 1px solid black;
}

h1,
h2,
h6 {
  padding: 10px;
  display: flex;
  justify-content: center;
  color: white;
}

#color-palette {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

#buttons {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.color {
  border: 1px solid black;
  border-radius: 20%;
  background-color: palevioletred;
  height: 60px;
  width: 60px;
  margin-left: 10px;
  margin-right: 10px;
}

.color:hover {
  height: 70px;
  width: 70px;
}

input {
  width: 350px;
  border: 4px solid #2f2f2f;
}

input:hover {
  width: 380px;
}

#clear-board {
  color: whitesmoke;
  margin-right: 10px;
}

#clear-board:hover {
  height: 40px;
  width: 140px;
}

#generate-board {
  background-color: #3a445d;
  margin-left: 10px;
  color: whitesmoke;
}

#generate-board:hover {
  height: 40px;
  width: 290px;
}
#black {
  background-color: black;
}

.bg {
  background-color: #ffd166;
}
main {
  background-color: #d2f898;
}
#pixel-board {
  margin-top: 100px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 0;
}

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

footer {
  margin-top: 20px;
}

.p-footer {
  text-align: center;
}

.card-body {
  background-color: #d2f898;
}
