*{
    box-sizing: border-box;
    outline: none;
}
body{
    background: url(../img/fieltro.jpg);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

input[type="number"]{
    width: 5em;
}

.container{
    display: flex;
    width: 75%;
    margin: 1em auto;
    align-items: center;
}


header{
    background-color: #5d4037;
    border: 2px solid #321911; 
    padding: 1em;
    border-radius: 0.5em;
    justify-content: space-around;
}

main{
    flex-wrap: wrap;
}

button{
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5em 1em;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
}

button:disabled, button:disabled:hover{
    background-color: rgb(175, 175, 175);
    cursor: auto;
}

.button-play{
    background-color: #1faa00;
}

.button-play:hover{
    background-color: #64dd17;
}

.button-play::after{
    content: "Play \25B6";
}

.button-stop{
    background-color: #c30000;
}

.button-stop:hover{
    background-color: #ff3d00;
}

.button-stop::after{
    content: "Stop \25A0";
}

.button-roll{
    background-color: #c68400;
}

.button-roll:hover{
    background-color: #ffb300;
}

.player{
    border: 2px solid #fff;
    padding: 1em;
    text-align: center;
    border-radius: 0.5em;
    margin: 0.5em;
    width: calc(25% - 1em);
    position: relative;
}

.player-winner::after{
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border-radius: 0.7em;
    content: "";
    z-index: -1;
    border: 4px solid rgb(1, 211, 1);
}

.player-loser::after{
    content: "";
    z-index: -1;
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border-radius: 0.7em;
    border: 4px solid rgb(179, 0, 0);
}

