html, body {
  margin: 0;
  padding: 0;
}

body {
  width: 60%;
  margin: 20px auto;
}

#header {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

#colorInput {
  width: 60px;
  height: 40px;
  border: none;
}

#colorSection {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}

#colorBar {
  height: 70vh;
  background-color: green;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#colorBar #color-name {
  background-color: pink;
  height: fit-content;
  padding: 2px 3px;
  border-radius: 3px;
  font-size: 12px;
  width: fit-content;
}

#colorBar #color-hex {
  color: rgb(248, 244, 240);
  border-radius: 3px;
  padding: 2px 3px;
  background-color: rgb(15, 15, 15);
  position: relative;
  font-size: 13px;
  font-weight: 700;
  bottom: -40px;
  width: auto;
}