body{
    display: flex;
    height: 100vh;
    background-color: gray;
    font-family: Arial, Helvetica, sans-serif;
    flex-direction: column;
    margin: 20px;

}


.heading{
    text-align: center;
    font-size: 40px;
}

#dice-container{
    text-align: center;
    position: relative;
   
}
.dice{
    margin-top: 20px;
    font-size: 50px;
    
}

#dice{
    font-size: 150px;
}

/*.dice-shape-d6{
    width: 200px;
    height: 200px;
    position: absolute; 
    border: 2px solid white;
    background-color: white;
    border-radius: 10px; 
    margin-left: 43%;
    padding-top: 0;
    z-index: -1

   
}

/*..dice-dot{
     --top: 0%;
    --left: 0%;

width: 15px;
height: 15px; 
background-color: black;
border-radius: 50%;
position: absolute; 
top: var(--top);
left: var(--left);
transform: translateX(calc(var(--left)*-1)) translateY(calc(var(--top)* -1));
} */

#buttons{
    display: flex;
    margin-top: 40px;
    justify-content: space-evenly;
}

#dice-select{
    width: 250px;
    font-size: 30px;
}

#rollButton{
    padding: 10px 10px;
    background-color: rgb(173, 13, 13);
    font-size: 30px;
}

#output{
    height: 50px;
}

.result{
   font-size: 40px;
    margin-top: 40px;
    color: #000000;
   
}