/* .main{
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    
} */

.main1{
    display: flex;
    justify-content: center;
}
ul{
    list-style-type: none;
}

h1{
    text-align: center;
    color: #007AF3;
}

.btn{
    margin-top: 20px;
    display: flex;
  justify-content: center;
  align-items: center;
}
.scissorsBtn{
    text-align: center;
    display: flex;
    background-color: #007AF3;
    margin-top: 3.5em;
    margin-bottom: 3.5em;
    color: white;
    font-weight: 600;
    font-size: 1em;
    border-radius: 5em;
    padding: .8em 2em;
    cursor: pointer;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.paperBtn , .rockBtn{
    text-align: center;
    display: flex;
    background-color: #007AF3;
    margin-top: 3.5em;
    margin-bottom: 3.5em;
    color: white;
    font-weight: 600;
    font-size: 1em;
    border-radius: 5em;
    padding: .8em 2.8em;
    cursor: pointer;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.scissorsBtn:hover,.paperBtn:hover , .rockBtn:hover{
    background-color: white;
    color:#007AF3;
    font-weight: 800;
}

.score{
    margin: 120px 30px 30px -6px; 
    color: #007AF3;
    font-weight: bold;
}
.computerScore{
    padding-top: 20px;
    padding-bottom: 20px;
}


.game{
    
    padding-top: 2em;
    font-size: 1.3em;
    font-weight: bold;
    display: flex;
    text-align: center;
    color: rgb(226, 203, 0);
    margin: 20px 30px 30px 30px;
}

.game img{
    padding-top: 1em;
    width: 170px;
    padding-left: 25px;
    padding-right: 25px;
}

.last{
    text-align: center;
    margin-top: -4em;
}

.newgameBtn{
    background-color:#2ecc71;
    color: white;
    font-weight: bold;
    font-size: 1em;
    display: inline-block;
    margin-bottom: 5em;
    border-radius: 5em;
    padding: .8em 2em;
    width: unset;
    cursor: pointer;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
}

.newgameBtn:hover{
    background-color: white;
    color: #2ecc71;
    font-weight: bolder;
}

.lastP{
    font-size: 1.3em;
    margin-left: 23px;
    margin-top: 45px;
    font-weight: bold;
    color: #007AF3;
}

#humanScore, #computerScore , #drawsScore{
    margin-left: 20px;
    color: black;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 2px 6px 2px 6px;
}

.gameHuman, .gameComputer{
    color: #007AF3;
    height: 300px;
    margin: 3px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}





/* responsive */

@media only screen and (max-width: 950px) {

    h1, .h1{
        font-size: 26px;
        line-height: 20px;
    } 

    ul{
        list-style-type: none;
    }

    .btns {
        display: flex;
        padding-left: 0;
        margin: 10px;
    }
    .btns li{
        margin: 0 2px;
    }

    .main1{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
    
    .scissorsBtn{
        font-weight: 500;
        font-size: 1em;
        border-radius: 5em;
        padding: 1.5em 1em;
        }
    .paperBtn , .rockBtn{
        font-weight: 500;
        font-size: 1em;
        border-radius: 2em;
        padding: 1.5em 1.8em;
    }
    
    .game{
        font-size: 1.3em;
        margin: -10px 30px 0px 30px;
        padding-top: 20px;
    }
    
    .game img{
        width: 100px;
        padding: 0px 15px;
    }

    .gameHuman, .gameComputer{
        height: 200px;
        margin: 3px;
    }

    .score{
        margin: 10px 30px 0px -6px;
        font-weight: bold;
    }

    .computerScore{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    
.btn{
    margin: 0px 30px;
}

.main{
    margin: auto 0%;
    border-width: 150%;
}

.newgameBtn{
    margin: 1em auto;
    padding: .8em 1em;
}

.lastP{
    font-size: 1.2em;
    margin-left: 0px;
    margin-top: 15px;
    font-weight: bold;
}

.last{
    margin: -10px 0;
}

}
