body {
  background-color: #f2f2f2; /* Fallback for older browsers */
  font-family: Arial, sans-serif;
  margin: 0;
}

.hex-container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.hexbox {
  text-align: center;
  margin: 0 auto;
  padding: 20px;
  background-color: white;

}

#generate-btn {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

#generate-btn:hover {
  background-color: #3e8e41;
}

#hex-output {
  margin-top: 20px;
  font-size: 24px;
  color: #333;
  font-family: Arial, sans-serif;
}

/* Responsive styles */
@media only screen and (max-width: 600px) {
  .hexbox {
    width: 90%;
  }

  #hex-output {
    font-size: 20px; /* Adjust font size for smaller screens */
  }
}
