/* css reset start here */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: inherit;
  line-height: 1.5;
}
/* css reset ends here */

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  max-width: 0 auto;
  margin: 0 auto;
  height: 100vh;
  text-align: center;
}

h1{
  color: white;
}

/* for the input */
.hex {
  font-size: 2rem;
  width: 10rem;
  text-align: center;
  padding: 3px;
  border: none;
  border-radius: 3px;
  margin: 20px;
  border: 2px solid black;
}

/* copy button */

.copy {
  background-color: #1a1818;
  color: white;
  padding: 10px;
  width: 10rem;
  margin: 15px auto;
  display: block;
  text-align: center;
  font-size: 20px;
  border-radius: 3px;
  border: 1px solid white;
  cursor: pointer;
}
.content {
  background-color: #265226;
  border-radius: 30px;
    border: 2px solid white;
  display: inline-block;
  padding: 50px;
}

/* for the div inside the content */
.content > div {
  margin: 2rem;
}

/* for the button inside the button-div class*/
.button-div button {
  font-size: 23px;
  padding: 15px;
  border-radius: 12px;
  background-color: orangered;
  color: white;
  cursor: pointer;
  border: none;
}