body{
    background-color: rgba(13, 17, 20, 0.973);
    font-family: 'DM Sans Regular', sans-serif;
    margin: 0px;
    padding: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.navGame{
    background-color: rgb(0, 80, 126);
    position: fixed;
    width: 100%;
    padding: 15px 0px 15px 50px; 
    top: 0;
}
#h1Content{
    font-size: 2em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    padding: 0;
    margin: 0;
    float: left;
    letter-spacing: 4px;
    margin-right: 10px;
    cursor: pointer;
}
.gameImage{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
}
.container2{
    float: right;
    margin-right: 78px;
    margin-top: 10px;
}
.container2 a{
    text-decoration: none;
    font-size: 1.2em;
    color: hsl(0, 0%, 100%);
    margin: 0px 20px;
    transition: color 0.3s ease;
}
.container2 a:hover{
    color: hsl(0, 2%, 59%);
}
.gameScore{
    height: fit-content;
    color: #ffb79a;
    margin: 150px 50px;
}

.gameScore #Layer_1{
    width: 50px;
}
.gameScore #Layer_2{
    width: 40px;
    margin-bottom: 10px;
}
.gameScore h3{
    margin: -10px;
}
.gameScore .playerContent{
    float: left;
    margin-left: 10px;
}
.gameScore .computerContent{
    float: right;
}
#hr{
    color: rgb(0, 80, 126);
    margin: 0px 120px 0px 155px;
}
.pointContent{
    color: #fff;
    margin-top: 20px;
    padding: 0px 49px 0px 70.5px;
}
.pointContent #pointComputer{
    float: left;
    border: 2px solid #ffb79a;
    width: 40px;
    padding: 5px 0px;
    border-radius: 5px;
}
.pointContent #pointPlayer{
    float: right;
    border: 2px solid #ffb79a;
    width: 40px;
    padding: 5px 0px;
    border-radius: 5px;
}
.resultContainer{
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 180px;
}
#result{
    color: #fff;
    border: 2px solid #ffb79a;
    width: 120px;
    display: inline-block;
    padding: 10px;
    margin-left: -8px;
    border-radius: 5px;
}
#newGame{
    padding: 10px 15px;
    background-color: #ffb79a;
    color: #0f0b0b;
    border: none;
    border-radius: 20px;
    display: inline-block;
    margin-top: 30px;
    box-shadow: 2px 3px 2px rgba(168, 150, 150, 0.342);
    margin-left: -8px;
}
.imageButton{
    margin-top: 100px;
    margin-bottom: 5px;
}
.gameButtons1{
    width: 90px;
    height: 90px;
    border-radius: 10%;
    border: 0;
    background-position: center;
    background-size: cover;
}
.gameButtons2{
    border-radius: 20px;
    padding: 6px 0px;
    border: 0;
    background-position: center;
    background-size: cover;
    font-size: 1.3em;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 80, 126);
    transition: background-color 0.3s ease-in-out;
}
.gameButtons2:hover{
    background-color: rgb(27, 114, 165);
}
#rock{
    background-image: url(../image/hand_rock_icon.png);
    background-color: rgb(255, 239, 99);
}
#rock2{
    width: 110px;
    margin-bottom: 5px;
}
#paper{
    background-image: url(../image/hand_paper_icon.png);
    background-color: #ffffff;
    margin: 0px 65px;
}
#paper2{
    width: 110px;
    margin: 0px 45.5px;
    margin-bottom: 5px;
}
#scissors{
    background-image: url(../image/hand_scissors_icon.png);
    background-color: #ffb79a;
}
#scissors2{
    width: 110px;
}

@media (max-width: 800px) {
    .container{
        display: flex;
        justify-content: center;
        margin-left: -50px;
        margin-bottom: 10px;
    }
    .container2{
        display: flex;
        justify-content: center;
        margin: auto;
        float: none;
        margin-right: 100px;
    }
    .gameScore{
        margin-top: 200px;
    }
}