/* Default stylesheet and tools */
body,
html {
  background: rgb(245, 245, 245);
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

#container-mouse {
  position: fixed;
  height: 50px;
  width: 50px;
  top: -100px;
  left: -100px;
  background: rgb(240, 240, 240);
  -webkit-box-shadow: 4px 2px 15px -3px rgba(0, 0, 0, 0.31);
  box-shadow: 4px 2px 15px -3px rgba(0, 0, 0, 0.31);
  border-radius: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%);
  cursor: none;
  z-index: 100;
}

#tools {
  font-family: "Arial", sans-serif;
  font-size: 13px;
  background: red;
  position: fixed;
  bottom: 10px;
  left: 10px;
  background: black;
  color: white;
  padding: 0;
}

#tools p {
  margin: 0;
  padding: 0;
}

#container-shape {
  transition: all ease-in-out 200ms;
}

#container-shape.classe1 {
  background-color: black;
  width: 100vh;
  height: 80vh;
}

#container-shape.classe2 {
  width: 80vh;
  height: 80vh;
  background-color: black;
  border-radius: 25%;
}

#container-shape.classe3 {
  width: 80vh;
  height: 80vh;
  border-radius: 50%;
  background-color: black;
}

#container-shape.classe4 {
  width: 0;
  height: 0;
  border-left: 40vh solid transparent;
  border-right: 40vh solid transparent;
  border-top: 80vh solid #000;
  background-color: transparent;
}

#container-play {
  width: 10px;
  height: 10px;
  background-color: blue;
  transition: all 10s ease-in-out;
  transform-origin: center center;
}

#container-play:hover {
  transform: scale(10);
}

audio {
  display: none;
}
