* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Ubuntu", sans-serif;
  background-color: #E1F2FE;
  color: #020402;
}

h1 {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: 80px 0 30px 0;
}

p {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 25px 0;
}

#color-box {
  border: 4px #020402 solid;
  width: 270px;
  height: 260px;
  margin: auto;
  border-radius: 5%;
  background-color: #06d7d7;
}

#hex-color-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0 0;
  border-radius: 10%;
  color: #020402;
}
#hex-color-box span {
  font-size: 20px;
  background-color: #E1F2FE;
  padding: 10px 15px;
  border-radius: 5%;
  font-weight: 500;
}
#hex-color-box svg:hover {
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */