body {
  background-color: midnightblue;
  height: 100%;
}

.board {
  width: 600px;
  height: 600px;
  display: grid;
  border: 3px solid navy;
  border-radius: 3px;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  color: aliceblue;
  margin: 30px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.colorContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}

.colorInput {
  display: flex;
  height: 30px;
  width: 50px;
}

.colorLabel,
.rangeLabel {
  display: flex;
  justify-content: center;
  align-items: center;
  color: aliceblue;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 30px;
  user-select: none;
  width: 100%;
}

.rangeContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.rangeInput {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  margin-bottom: 10px;
}

.checksContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eraserLabel,
.rainbowLabel,
.resetLabel {
  display: flex;
  justify-content: center;
  align-items: center;
  color: aliceblue;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 30px;
  user-select: none;
  margin-left: 10px;
  margin-right: 10px;
}

.eraserInput,
.rainbowInput,
.resetInput {
  width: 30px;
  height: 30px;
}

.colorInput {
  padding: 0px;
  border: none;
  height: 30px;
  width: 40px;
  border-radius: 5px;
}

@media (max-width: 300px) {
  .title {
    font-size: 20px;
  }

  .eraserLabel,
  .rainbowLabel,
  .resetLabel,
  .colorLabel,
  .rangeLabel {
    font-size: 20px;
  }

  .eraserInput,
  .rainbowInput,
  .resetInput {
    width: 20px;
    height: 20px;
  }

  .board {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 500px) {
  .board {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 700px) {
  .board {
    width: 450px;
    height: 450px;
  }
}
