body {
background-color: #AEB8FE;
display: flex;
}
.dice {
width: 90px;
height: 90px;
border-radius: 10px;
background-color: #EFE5DC;
margin: 100px;
position: relative;
}
.dot {
position: absolute;
width: 20px;
height: 20px;
border-radius: 15px;
background-color: black;
display: none;
}
.dot.show {
display: initial;
}
#d1 {
top: 10px;
left: 10px;
}
#d2 {
top: 35px;
left: 10px;
}
#d3 {
bottom: 10px;
left: 10px;
}
#d4 {
top: 35px;
left: 32.5px;
}
#d5 {
top: 10px;
right: 10px;
}
#d6 {
top: 35px;
right: 10px;
}
#d7 {
bottom: 10px;
right: 10px;
}