body {
    background-color: rgb(29, 12, 1);
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    color: rgb(255, 220, 155);
    font-size: 50px;
    text-align: center;
}

#hhh {
    position: fixed;
    background-color: rgba(29, 12, 1, 0.8);
    width: 100%;
    height: 85px;
    top: -10px;
}


/*---------------------------------------- Score sheet ----------------------------------------*/

#score-sheet {
    border: 1px solid black;
    border-radius: 20px;
    background-color: sienna;
    float: left;
    padding: 20px;
    margin: 30px;
}

#score-sheet .th1 {
    font-size: 25px;
    color: wheat;
    padding-top: 10px;
    padding-bottom: 20px;
    border-radius: 5px;
}

#score-sheet .th2 {
    border: 1px solid black;
    width: 200px;
    background-color: rgb(201, 139, 86);
    font-size: 16px;
    padding: 15px;
    border-radius: 5px;
}

#score-sheet td {
    border: 1px solid black;
    padding: -20px;
    border-radius: 5px;
}

button {
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    border-radius: 5px;
}

.score {
    width: 50px;
    height: 50px;
    background-color: rgb(243, 215, 162);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 40px;
    }
    #score-sheet {
        float: none;
        margin: 0px;
        padding: 10px;
        width: 100%;
    }
    #score-sheet .th1 {
        font-size: 22px;
    }
    #score-sheet .th2,
    td,
    .score {
        font-size: 14px;
    }
}


/*---------------------------------------- Area dice ----------------------------------------*/

#countRound {
    color: rgb(243, 215, 162);
    font-size: 18px;
    float: left;
    margin-top: 30px;
    margin-left: 30px;
}

#area-dice {
    background-color: rgb(59, 25, 0);
    border: 1px dashed cornsilk;
    border-radius: 20px;
    float: left;
    margin-top: 15px;
    margin-left: 10px;
    margin-bottom: 30px;
    padding: 10px;
}

#area-dice td {
    padding: 25px;
}

.button-dice {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    margin: -10px;
    cursor: pointer;
}

.btn {
    float: left;
    width: 800px;
    margin-left: 10px;
}

.button {
    background-color: rgb(255, 214, 138);
    width: 150px;
    height: 50px;
    border-radius: 10px;
    font-size: 18px;
}

@media screen and (max-width: 600px) {
    #countRound {
        float: none;
        margin-left: 25px;
        font-size: 15px;
        text-align: left;
    }
    #area-dice {
        float: none;
        margin-left: 0px;
        width: 100%;
    }
    #area-dice td {
        padding: 5px;
    }
    #dtname {
        font-size: 14px;
    }
    .button-dice {
        width: 50px;
        height: 50px;
        margin: 0px;
    }
    .btn {
        float: none;
        width: 100%;
        margin-left: 0px;
    }
}


/*---------------------------------------- Scrollbar ----------------------------------------*/

::-webkit-scrollbar {
    width: 0px;
}