body {
  background-color: aliceblue;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
h1 {
  font-family: "Bungee", sans-serif;
  color: rgb(130, 188, 255);
}
#container {
  margin-top: 20px;
  width: 600px;
}
#grid-container {
  display: grid;
  background-color: white;
  margin-top: 20px;
  height: 600px;
  box-shadow: 1px 1px 5px;
}
.button {
  margin-left: 5px;
  margin-right: 5px;
  background-color: white;
  padding: 10px;
  color: rgb(116, 116, 116);
  font-family: Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 10px;
  font-size: 1em;
}
i {
  color: rgb(167, 167, 167);
}
.chosen {
  background-color: rgb(162, 194, 255);
  color: white;
  font-weight: bold;
  transition: background-color 0.2s ease-in;
}
.chosenColor {
  color: rgb(112, 162, 255);
  font-weight: bold;
}
#color {
  margin-bottom: 5px;
  margin-left: 0px;
  padding: 0px;
  padding-left: 2px;
}
#color-container {
  display: flex;
  justify-content: center;
  align-content: center;
  background-color: white;
  margin-left: 5px;
}
#colorPicker {
  padding: 0px;
  margin-top: 2px;
  margin-left: 5px;
  margin-right: 2px;
  background-color: white;
  border: none;
}
#color-container label {
  margin-top: 8px;
}
#buttons-container {
  display: flex;
  justify-content: center;
}
.box {
  border-left: 1px solid rgba(222, 222, 222, 0.33);
  border-bottom: 1px solid rgba(222, 222, 222, 0.33);
}
#size-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
#size-container label {
  font-size: 1.5em;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(98, 151, 249);
}
#size {
  margin-left: 15px;
  font-weight: bold;
  text-align: center;
  font-size: 1.1em;
  width: 150px;
  border-radius: 10px;
  padding: 5px;
  color: rgb(116, 116, 116);
  border: 2px solid rgb(183, 183, 183);
}
#generate-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
#generate {
  background-color: rgb(162, 194, 255);
  padding: 10px;
  color: rgb(255, 255, 255);
  font-family: Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 10px;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease-in;
}
#generate:hover {
  background-color: rgb(97, 152, 255);
}
#generate:active {
  background-color: rgb(199, 224, 255);
  transition: none;
}
#grid-icon {
  font-size: 1.1em;
}
