.main{
    display: flex;
    text-align: center;
    box-shadow: 5px 5px 5px rgb(1,1,1,0.5),
    5px 5px 5px rgb(1,1,1,0.5);
    position: absolute;
    justify-content: center;
    margin: 20px auto;
    /* margin-left: 190px; */
    left: 35%;
}

.body{
    box-shadow: 5px 5px 5px rgb(1,1,1,0.5),
    5px 5px 5px rgb(1,1,1,0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    justify-content: center;
    margin: 20px auto;
    width: 250px;
    height: 400px;
    padding: 25px;
}

#btnCl{
    background-color: black;
    color: white;
}

.dice{
    width: 150px;
    height: 150px;
   font-size: 8rem;
  margin: 10px auto;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.roll-animation {
  animation-name: roll;
}

@keyframes roll {
  0% {
    transform: rotateY(0deg) rotateX(0deg);
  }

  100% {
    transform: rotateY(720deg) rotateX(720deg);
  }
}


#btnCl:hover{
    cursor: pointer;
    background-color: whitesmoke;
    color:rgb(13, 13, 14)
}

ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 5rem auto;
}
