body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    overflow: hidden;
    background-color: aliceblue;
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
}
.btn{
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 10px;
    background-color: darkcyan;
    color: white;
    font-size: 20px;
    cursor: pointer;
}
.dice{
    width:300px;
    height: 300px;
    margin: 20px;
    background-color: white;
    box-shadow: 20px 20px 50px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    /* padding: 30px; */
}
.num{
    margin: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: red;
    box-shadow:5px 5px 10px inset ;
    display: none;
}
