* {
    box-sizing: border-box;
    font-family:  'Karla';
}

body {
    margin: 0;
    background-color: #0B2434;
    padding: 20px;
}

main {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: antiquewhite;
    height: 400px;
    max-width: 800px;
    border-radius: 5px;
}

.title {
    margin: 0;
}

.diceList {
    margin: 1.5rem;
    display: grid;
    grid-template-columns: repeat(5, 40px);
    grid-template-rows: repeat(2, 40px);
    grid-gap: 30px;
}

.die {
    background-color: #FFF;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.50rem;
    font-weight: 800;
    border-radius: 4px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    user-select: none;
}

.reroll {
    width: 100px;
    height: 50px;
    background-color: rgba(151, 63, 233, 0.805);
    border-radius: 10px;
    cursor: pointer;
}

.reroll:focus {
    outline: none;
    
}
.reroll:active {
    box-shadow: 3px 5px 2px rgba(0, 0, 0, 0.15);
    
}

.held {
    background-color: #59E391;
}