* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #707c80;
  min-width: 500px;
}

h1 {
  text-align: center;
  margin-top: 1em;
  font-size: 3rem;
}

.user-tips {
  max-width: 750px;
  width: 100%;
  margin: 0.5em auto;
  text-align: center;
}

.wrapper {
  max-width: 750px;
  width: 100%;
  margin: 2em auto;
  padding: 2em 0 0 0;
  border: 1px solid #707c80;
  border-radius: 1em;
}

#color-container {
  height: 500px;
  display: flex;
}

#user-color,
.color-bg {
  width: 20%;
}

#color-hex-values {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 1em 0;
}

.tool-wrapper {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.5em;
}

#color-generator {
  width: 8%;
  height: 45px;
}

#color-list {
  width: 40%;
  padding: 0.5em 0.2em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #707c80;
  border-radius: 0.3em;
}

.btn {
  width: 20%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #707c80;
  background-color: transparent;
  border: 1px solid black;
  border-radius: 0.3em;
  cursor: pointer;
  transition: all ease-in 400ms;
}

.btn:hover {
  background-color: rgba(214, 214, 214, 0.761);
  color: #676868;
}
