body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    font-family: Arial, sans-serif;
    text-align: center;
}

#dobbelsteen-container {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    perspective: 1000px;
}

#dobbelsteen {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(0) rotateY(0);
    transition: transform 1s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.face {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border: 2px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.dot {
    width: 20px; /* Grootte van de stippen */
    height: 20px; /* Grootte van de stippen */
    background: black;
    border-radius: 50%;
    position: absolute;
}

.dots-1 .dot {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dots-2 .dot:nth-child(1) {
    top: 25%;
    left: 25%;
}

.dots-2 .dot:nth-child(2) {
    bottom: 25%;
    right: 25%;
}

.dots-3 .dot:nth-child(1) {
    top: 25%;
    left: 25%;
}

.dots-3 .dot:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dots-3 .dot:nth-child(3) {
    bottom: 25%;
    right: 25%;
}

.dots-4 .dot:nth-child(1) {
    top: 25%;
    left: 25%;
}

.dots-4 .dot:nth-child(2) {
    top: 25%;
    right: 25%;
}

.dots-4 .dot:nth-child(3) {
    bottom: 25%;
    left: 25%;
}

.dots-4 .dot:nth-child(4) {
    bottom: 25%;
    right: 25%;
}

.dots-5 .dot:nth-child(1) {
    top: 20%;
    left: 20%;
}

.dots-5 .dot:nth-child(2) {
    top: 20%;
    right: 20%;
}

.dots-5 .dot:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dots-5 .dot:nth-child(4) {
    bottom: 20%;
    left: 20%;
}

.dots-5 .dot:nth-child(5) {
    bottom: 20%;
    right: 20%;
}

.dots-6 .dot:nth-child(1) {
    top: 15%;
    left: 20%;
}

.dots-6 .dot:nth-child(2) {
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.dots-6 .dot:nth-child(3) {
    bottom: 15%;
    left: 20%;
}

.dots-6 .dot:nth-child(4) {
    top: 15%;
    right: 20%;
}

.dots-6 .dot:nth-child(5) {
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
}

.dots-6 .dot:nth-child(6) {
    bottom: 15%;
    right: 20%;
}

.front  { transform: rotateY(0deg) translateZ(50px); }
.back   { transform: rotateY(180deg) translateZ(50px); }
.right  { transform: rotateY(90deg) translateZ(50px); }
.left   { transform: rotateY(-90deg) translateZ(50px); }
.top    { transform: rotateX(90deg) translateZ(50px); }
.bottom { transform: rotateX(-90deg) translateZ(50px); }

#log-container {
    margin-top: 20px;
}

#log-list {
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
}
