body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container{
    width: 800px;
    margin: 24px auto;
}
#dice{
    margin: 24px 0;
    border: 2px solid rgb(86, 83, 83);
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bolder;

}
.roll-dice{
    animation-name: roll;
    animation-duration: 0.5s;
    animation-iteration-count: 6;
    animation-direction: alternate;
}
@keyframes roll{
    from{}
    to{
        margin-left: 100px;
        transform: rotate(360deg);
    }
}
.btn{
    padding: 12px 24px;
    background-color: chartreuse;
    color: black;
    outline: none;
    border: none;
    border-radius: 24px;
    
}