/*CSS for the cool kids*/
html {
  box-sizing: border-box;
  margin: 10px;
  height: 100%;
  font-weight: normal;
  font-family: "Space Mono", monospace;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/********************************************************************* 
** Header
*********************************************************************/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.title {
  font-size: 38px;
  border-radius: 5px;
  border: 1px solid #000000;
  box-shadow: 3px 3px #000;
  margin: 0;
  padding: 10px;
}

.buttons {
  display: flex;
  justify-content: space-around;
  width: 800px;
}

.button-create {
  text-transform: uppercase;
  border-radius: 5px;
  padding: 5px;
  width: 125px;
  height: 45px;
  border: 1px solid #000000;
  font-size: 18px;
  margin: 0;
  cursor: pointer;
  color: #000;
  background-color: #fff;
  box-shadow: 3px 3px #000;
}

.button-create:hover {
  transition: all 0.2s ease 0s;
  background-color: #000;
  color: #fff;
}

.button-create:active {
  border-color: #fff;
}

/********************************************************************* 
** Palette
*********************************************************************/
.palette {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 2000px;
  align-items: center;
}

.color-column {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: inherit;
  min-height: 600px;
  border: solid #000 1px;
  margin-bottom: 15px;
}

.color-input {
  justify-self: center;
  align-self: center;
}

.delete-button {
  height: 25px;
  font-size: 16px;
  margin: 5px;
  cursor: pointer;
  background-color: #000;
  color: #fff;
  border: #000;
}

.delete-button:hover {
  transition: all 0.2s ease 0s;
  background-color: white;
  border: 1px #000 solid;
  color: #000;
}

