body {
    font-family: 'Share Tech Mono';
    background-color: mintcream;
}

#contentDiv {
    display: flex;
}

#human, #computer {
    width: calc((100%/2) - 11px);
    height: 550px;
    float: left;
    text-align: center;
}

#human {
    margin-left: 10px;
    border-right: 1px solid gainsboro;
}

div.gameTitleDiv {
    padding-top: 5px;
    background-color: white;
}

#gameTitle {
    font-size: 50px;
}

h1 {
    text-align: center;
}

img.diceFaces {
    width: calc(100%/4);
}


div.buttonsDiv {
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
    background-color: white;
}

input[type=button] {
    -webkit-appearance: none;
    width: 45%;
    height: 50px;
    border: 2px solid red;
    border-radius: 3px;
    color: black;
    background-color: mintcream;
    font-size: 15px;
    transition-duration: 0.4s;
}

input[type=button]:hover {
    background-color: red;
    color: mintcream;
    cursor: pointer;
}

input[type=button]:disabled {
    background: red;
    color: mintcream;
    opacity: 0.6;
    cursor: not-allowed;
}

div.scoresDiv {
    padding: 50px 0;
}

#scoresTitle {
    text-align: center;
    font-size: 23px;
}

table {
    border-collapse: collapse;
    width: 60%;
    margin: auto;
}

table, tr, td {
    border: 1px solid black;
}

td {
    padding: 20px;
}

thead {
    background-color: white;
}

@media (max-width: 576px) {
    #human, #computer {
        height: 350px;
    }
    
    h1 {
        font-size: 17px;
    }

    #gameTitle {
        font-size: 30px;
    }

    #compPlayerTitle {
        padding-left: 3px;
    }

    img.diceFaces {
        width: calc(100%/3);
    }

    h3 {
        font-size: 15px;
    }

    #scoresTitle {
        font-size: 18px;
    }

    input[type=button] {
        font-size: 12px;
    }

    td {
        padding: 15px;
    }

    div.scoresDiv {
        padding: 20px 0;
    }
}

@media (max-width: 1200px) {
    #human, #computer {
        height: 400px;
    }
}
