/* style for html div */
html {
    position: relative;
    min-height: 100%;
    padding: 0;
    border: 10px grey solid;

}

.header {
    border: 15vh;
    padding: 1em 10em;
    background-color: #111720;
    font-size: 20px;
}

.game-title {
    text-align: center;
    font-size: 4rem;
    padding: 1em 9em;
}

/* body style */

body {
    min-height: 100vh;
    padding: auto;
    background-color: black;
    color: white;
}

/* style for display div*/

.display {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 48px;
    padding: 60px 0 32px;
}

/* style for container text used flex */
.container-text {
    padding-top: 75px;
    display: flex;
    justify-content: center;
    gap: 12vh;
}

/*style for the two score boxes */
.score-box2,
.score-box1 {
    flex-direction: column;
    text-align: center;
    height: 25vh;
    width: 35vh;
    border-radius: 10%;
    background-color: #111720;
}

/* style for playerText and compText inside the score boxes */
.playerText,
.compText {
    margin-bottom: auto;
    font-size: 48px;
    padding-bottom: 40px;
}

/* style for the container-text  */
.container-text {
    color: white;
    font-size: 28px;

}

/* style for Winner div*/
.winner {
    text-align: center;
    padding: 30px;
    font-size: 38px;
}

/* style for Container-buttons div*/
.container-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 36px;
}

.container-buttons>button {
    padding: 7px 1em;
    width: 120px;
    background-color: #111720;
    border-radius: 8px;
    color: white;
    padding: auto;
    font-size: 20px;
}

/* center alignment for h4 tag */
h4 {
    text-align: center;
}

/*player and computer score font color*/
.playerScore,
.compScore {
    color: white;
}

/* footer */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 10%;
    width: 100%;
    padding: 0px;
    background-color: #111720;
    font-size: 20px;
}

/* the Github icon color*/
.footer a {
    color: white;
}

/*sytle for the restart button*/
.restart-button {
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.restartBtn {
    padding: 10px 1em;
    width: 15vh;
    background-color: #111720;
    border-radius: 8px;
    color: white;
    padding: auto;
    font-size: 1.5vh;
}