* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #0093e9;
  background-image: linear-gradient(160deg, #a2a2a2 0%, #86c1ff 100%);
  position: relative;
  height: 99vh;
  overflow: hidden;
}

.header {
  text-shadow: 0 0 13px #fff;
  margin-top: 5px;
  font-size: 3rem;
  display: flex;
  justify-content: center;
}

.section-range {
  width: 500px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-around;
}

.range-selector-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inline-range-divs {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}

.colour-selection {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

input {
  width: 70px;
}

.sketchpad {
  background-color: rgb(255, 255, 255);
  margin: 0 auto;
  width: 500px;
  margin-bottom: 20px;
  box-shadow: rgb(255, 85, 85) 0px 0px 10px 8px;
}

.row {
  display: flex;
}

.gridBox {
  border: 1px rgba(0, 0, 0, 0.044) solid;
}

button {
  padding: 8px;
  border-radius: 7px;
  border: none;
}

button:hover {
  font-weight: 800;
  cursor: pointer;
}
.bw-colour-btn:hover {
  background-color: black;
  cursor: pointer;
  color: white;
}

.rgb-colour-btn:hover {
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 1) 0%,
    rgba(0, 255, 0, 1) 50%,
    rgba(0, 0, 255, 1) 100%
  );
  color: rgb(0, 0, 0);
  font-weight: 800;
}

.rgb-colour-background {
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 1) 0%,
    rgba(0, 255, 0, 1) 50%,
    rgba(0, 0, 255, 1) 100%
  );
}

.bw-colour-background {
  background: black;
  color: white;
}

.wipe-btn {
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
}

.wipe-btn:hover {
  background: rgb(238, 6, 45);
  color: white;
}

.footer {
  color: white;
  margin: 0 auto;
  height: 50px;
  background: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  /* top: 0; */
  bottom: -4px;
  width: 100%;
  /* margin-bottom: 10px; */
}
.para-github img {
  width: 25px;
  height: 25px;
  margin-top: -6px;
  background: white;
}
.para-github {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 10px;
}

.para-github a:hover {
  color: yellow;
}

a {
  text-decoration: none;
  color: white;
  font-weight: 800;
}
