/* style.css */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #1674EA;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.color-picker-container {
  text-align: left;
  padding: 20px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

h1 {
  font-size: 24px;
  color: #333;
}

input[type="color"] {
  width: 100px;
  height: 50px;
  border: none;
  margin-bottom: 15px;
}

.color-info {
  font-size: 16px;
  color: #555;
}

.color-info span {
  font-weight: bold;
  color: #333;
}
