html body{
   margin: 0;
   padding: 0;
   overflow-x: hidden;
}
html{scrollbar-width: none;}
body{
  background-image: url("./assets/paper.jpg");
}

.object, .objectBox{
  position: absolute;
  display: flex;
  flex-direction: horizontal;
  width: fit-content;
  height: fit-content;
  z-Index: 0;
  h1{
    font-size: 5vmin;
    text-align: center;
    pointer-events: none;
    padding-left: 2vmin;
    padding-right: 2vmin;
    }
  border-radius: 5px;
  -webkit-user-select: none;
  user-select: none;
}
.objectsBox{
  position: absolute;
  display: flex;
  flex-direction: column;
  width: fit-content;
  height: fit-content;
  z-Index: 0;
  border-radius: 5px;
  -webkit-user-select: none;
  user-select: none;
}
  
.pronounDiv{
  background-color: lightgreen;
}
.verbDiv{
  background-color: lightyellow;
}
.nounDiv{
  background-color: lightblue;
}