@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Montserrat";
}

.canvasContainer {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: aqua; */
}

.backgroundDiv {
  position: absolute;
  z-index: 0;
  width: 600px;
  height: 600px;
  background: url(./MountainSunset.jpg) no-repeat center / cover;
  border-radius: 8px;
}

#squareFactory{
  position: absolute;
  z-index: 2;
  bottom: 10px;  /* position the top  edge of the element at the middle of the parent */
  left: 10px;
  width: auto;
  height: auto;
}

svg {
  /* vertical-align:top; */
  display: block;
}