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

body {
  text-align: center;
  background-color: #ccccb3;
  font-family: "Roboto Mono", monospace;
}

.header {
  padding: 1rem;
}

.buttons {
  padding: 1rem;
  display: flex;
  justify-content: space-evenly;
}

#reset {
  padding: 0.625rem 1.25rem;
  background-color: #ddd;
  border: none;
  cursor: pointer;
  border-radius: 16px;
}

#rgb {
  padding: 0.625rem 1.25rem;
  background-color: #ddd;
  border: none;
  cursor: pointer;
  border-radius: 16px;
}

#grid-container {
  display: grid;
  max-width: 800px;
  height: 600px;
  margin: 1rem auto;
  border: 12px outset #124669;
  border-radius: 8px;
}

.grid-item {
  border: 2px solid #e6e6e6;
  background-color: white;
}
