body{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: blue;
}

header{
    background-color: aqua;
    margin-top: 15%;
    height: 2rem;
    margin-left: 3rem;
    margin-right: 3rem;
    border-radius: 10px;
    text-align: center;
}

main{
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 3rem;
    height: 38rem;
    margin-bottom: 2rem;
    background-color: red;
}

#players{
    display: flex;
    background-color: gold;
    margin-left: 1rem;
    margin-right: 1rem;
    height: 20rem;
    justify-content: center;
    gap: 5rem;
}

#dices{
    margin-bottom: 1rem;
    display: flex;
    position: absolute;
}

#dice_1{
    margin-left: 5rem;
    margin-right: 2rem;
    margin-top: 5rem;
}

#dice_2{
    margin-left: 5rem;
    margin-right: 2rem;
    margin-top: 5rem;
}

.dice_equal_1{
    position: fixed;
    background: url(images/cube_with_1.png);
    height: 3rem;
    width: 3rem;
    background-size: cover;
}

.dice_equal_2{
    position: fixed;
    height: 3rem;
    width: 3rem;
    background: url(images/cube_with_2.png);
    background-size: cover;
}

.dice_equal_3{
    position: fixed;
    height: 3rem;
    width: 3rem;
    background: url(images/cube_with_3.png);
    background-size: cover;
}

.dice_equal_4{
    position: fixed;
    height: 3rem;
    width: 3rem;
    background: url(images/cube_with_4.png);
    background-size: cover;
}

.dice_equal_5{
    position: fixed;
    height: 3rem;
    width: 3rem;
    background: url(images/cube_with_5.png);
    background-size: cover;
}

.dice_equal_6{
    position: fixed;
    height: 3rem;
    width: 3rem;
    background: url(images/cube_with_6.png);
    background-size: cover;
}

#options{
    margin-bottom: 2rem;
    margin-top: 13rem;
    text-align: center;
}