@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700;800&display=swap");
* {
  box-sizing: border-box;
  background: white;
  font-family: "Open Sans";
}

:root {
  --grid-cols: 1;
  --grid-rows: 1;
}

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

#container {
  display: grid;
  width: 700px;
  height: 700px;
  grid-template-rows: repeat(var(--grid-rows), 1fr);
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  background: white;
  border: 1px solid black;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: solid white;
}

.grid-item {
  border: 1px solid black;
  text-align: center;
}

#changeBtn {
  border-radius: 25%;
  border: 2px solid lightblue;
  font-size: 30px;
  padding: 1em;
  cursor: pointer;
}

#color {
  float: inline-end;
  position: relative;
  right: -100px;
  top: 10px;
  border-radius: 40%;
  height: 65px;
  width: 65px;
  padding: 0.5em;
  cursor: pointer;
}

#clear {
  border-radius: 25%;
  border: 2px solid lightblue;
  font-size: 30px;
  padding: 1em;
  cursor: pointer;
  position: relative;
  right: 120px;
}

@media only screen and (max-width: 697px) {
  #container {
    width: 500px;
    height: 500px;
    top: 70%;
  }

  #changeBtn {
    position: relative;
    top: 150px;
    right: 40px;
  }

  #clear {
    position: relative;
    right: -150px;
  }

  #color {
    position: relative;
    right: 195px;
    top: 260px;
  }
}
@media only screen and (max-height: 772px) {
  #container {
    width: 500px;
    height: 500px;
  }
}
@media only screen and (max-height: 609px) {
  #clear {
    padding: 0.3em;
  }

  #changeBtn {
    padding: 0.3em;
  }

  #container {
    width: 450px;
    height: 450px;
    top: 55%;
  }
}/*# sourceMappingURL=style.css.map */