/* Default stylesheet and tools */
body,
html {
  background: rgb(240, 240, 240);
  padding: 0;
  margin: 0;
}

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

#rettangolo {
  position: relative;
  height: 30vh;
  width: 30vh;
  display: flex;
  transition: all 300ms ease-in-out;
  transform-origin: center center;
  background: rgb(0, 0, 0);
}

#rettangolo.blue {
  background: rgb(0, 0, 255);
}


#rettangolo.rosso {
  background: rgb(255, 0, 0);
}
#rettangolo.border {
  border-radius: 50%;
  /* margin-left: 50px; */
}

#rettangolo.marginTop {
  margin-top: 20vh;
}

#buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  padding: 10px;
  z-index: 100;
  gap: 5px;
}

button {
  cursor: pointer;
}
