* {
  box-sizing: border-box;
}

body {
  font-family: Roboto, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#canvas {
  width: 640px;
  height: 640px;
  outline: 2px solid black;
  display: grid;
}

.pixel {
  border: 1px solid black;
}

h1 {
  font-size: 64px;
  font-weight: 700;
}

.container {
  display: flex;
  position: relative;
  width: fit-content;
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: -220px;
  top: 20%;
}

button {
  background-color: rgb(48, 182, 48);
  color: white;
  padding: 10px 20px;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: rgb(48, 182, 48);
  color: white;
  padding: 10px 20px;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
}

#color-picker {
  width: 100px;
  height: 75px;
  padding: 0;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
}

.red {
  background-color: rgb(182, 79, 48);
}
