
body {
  font-family: sans-serif; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  min-height: 100vh; 
  margin: 0; 
  background-color: #f4f4f4; 
}


.contenedor-color {
  background-color: #fff; 
  padding: 30px; 
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  text-align: center; 
  width: 300px; 
}


h1 {
  color: #333; 
  margin-bottom: 25px; 
}


#selectorColor {
  width: 100px; 
  height: 100px; 
  border: none; 
  background: none; 
  padding: 0; 
  cursor: pointer; 
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


#selectorColor::-moz-color-swatch {
  border: none;
  border-radius: 50%; 
}


#selectorColor::-webkit-color-swatch-wrapper {
  padding: 0;
}
#selectorColor::-webkit-color-swatch {
  border: none;
  border-radius: 50%; 
}


.muestra-color {
  width: 100%; 
  height: 80px; 
  margin-top: 25px; 
  border-radius: 5px; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  color: #fff; 
  font-weight: bold; 
  transition: background-color 0.3s ease; 
}

#codigoHex {
  background-color: rgba(
    0,
    0,
    0,
    0.2
  ); 
  padding: 8px 12px; 
  border-radius: 4px;
}
