* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: antiquewhite;
  flex-direction: column;
}

.controlers {
  display: flex;
  width: 95%;
  height: 50px;
  justify-content: space-between;
  margin: 15px 0;
}
.controlers input {
  padding: 2px;
  height: 100%;
  width: 15%;
}

.controlers select {
  width: 60%;
  padding: 0 10px;
}
.controlers button {
  width: 20%;
}

.colors {
  display: flex;
  height: 70vh;
  width: 100%;
}

.colors div {
  width: 20%;
  border: none;
}

#color1 {
  background-color: #f55a5a;
}
#color2 {
  background-color: #2b283a;
}
#color3 {
  background-color: #fbf3ab;
}
#color4 {
  background-color: #aad1b6;
}
#color5 {
  background-color: #a626d3;
}

.codes {
  display: flex;
  justify-content: space-evenly;
  margin-top: 10px;
  width: 100%;
}

.codes div {
  width: 20%;
  text-align: center;
}
