body {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 30px;
  background-color: rgba(216, 206, 206, 0.691);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

img {
  width: 30px;
  height: 30px;
  margin-left: 6px;
}

#footer {
  text-align: center;
  margin-top: 120px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
}

#footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
  margin: 0px;
  padding: 0px;
}

#container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#grid-container {
  display: grid;
  width: 500px;
  height: 500px;
  /* grid-template-columns: repeat(20, 1fr);
  grid-template-rows: repeat(20, 1fr); */
  gap: 2px; /* Add a 1px gap between cells */
  border: 50px solid rgb(134, 1, 1);
  box-shadow: 8px 8px 0px black;
}

.grid-cell {
  background-color: rgb(250, 250, 250);
}

#main {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}

#container-2 {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  margin-right: 30px;
  gap: 20px;
}

.slider-info {
  text-align: center;
  margin-bottom: -5px;
  font-size: 20px;
}

/* CSS */
#reset,
#rgb,
#eraser,
#colorPicker,
#default-btn {
  background-color: #ffffff;
  border: 1px solid #222222;
  border-radius: 8px;
  box-sizing: border-box;
  color: #222222;
  cursor: pointer;
  display: inline-block;
  font-family: Circular, -apple-system, BlinkMacSystemFont, Roboto,
    "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 0;
  outline: none;
  padding: 13px 23px;
  position: relative;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: box-shadow 0.2s, -ms-transform 0.1s, -webkit-transform 0.1s,
    transform 0.1s;
  user-select: none;
  -webkit-user-select: none;
  width: auto;
}
button:hover {
  transform: transform 0.1s;
  transform: scale(1.02);
}

.button-23:focus-visible {
  box-shadow: #222222 0 0 0 2px, rgba(255, 255, 255, 0.8) 0 0 0 4px;
  transition: box-shadow 0.2s;
}

.button-23:active {
  background-color: #f7f7f7;
  border-color: #000000;
  transform: scale(0.96);
}

.button-23:disabled {
  border-color: #dddddd;
  color: #dddddd;
  cursor: not-allowed;
  opacity: 1;
}
