html {
    box-sizing: border-box;
}
*,
*::before,
*::after {
    box-sizing: inherit;
}
/*main header*/
h1 {
    text-align: center;
    color: rgb(255, 115, 0);
}


/* Score */
.score {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}
.score h3 {
    margin-bottom: 5px;
    font-family: monospace;
    font-size: 1.7rem;
}
.score .display{
    display: flex;
    gap: 10px;

    font-size: 3rem;
    /* font-family: 'Courier New', Courier, monospace; */

    background-color: black;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 7px;
    align-content: center;
}

/* user & computer section */
.game-space {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
    width: 800px;
    /* background-color: antiquewhite; */
    margin: auto;
}


.user-space,
.computer-space {
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    width: 250px;

    border-radius: 17px;
    padding: 17px;

    box-shadow: 0 0 10px rgba(128, 128, 128, 0.322);

    transition-duration: 0.5s;
}

/*Weapon buttons*/
.weapon-choice {
    width: 800px;
    margin: auto;
    margin-top: 30px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}
.weapons {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin: 7px;
    
}
.weapons button {
    width: 90px;
    padding: 5px;
    font-size: large;
    background-color: black;
    color: white;
    border: 2px solid black;
    border-radius: 7px;
}

.weapons button:hover{
    cursor: pointer;
    color: black;
    background-color: white;
}

.weapons button:active {
    box-shadow: 2px 2px 5px rgba(128, 128, 128, 0.479);
}

.reset {
    background-color: rgb(240, 96, 0);
    color: white;
    display: block;
    margin: auto;
    margin-top: 50px;
    font-size: xx-large;
    border: 2px solid rgb(240, 96, 0);
    padding: 7px 27px;
    border-radius: 11px;
}

.reset:hover {
    cursor: pointer;
    color: rgb(240, 96, 0);
    background-color: white;
}

.reset:active {
    box-shadow: 0px 0px 15px rgba(240, 121, 42, 0.479);
}

/* Game status */
.game-status {
    width: 800px;
    text-align: center;
    margin: 3rem auto 1rem;
    padding: 1rem;
    border: 2px solid black;
    border-radius:  1rem 0;

    font-size: 2rem;
}

/* Image Styling for Winner And Looser */
.winner {
    box-shadow: 0 0 10px rgb(0, 255, 0, 0.5);
    transform: scale(1.1);
    transition-duration: 0.5s;

}

.looser {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    transform: scale(0.8);
    transition-duration: 0.5s;
}

.tie {
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.322);
    transform: scale(1);
    transition-duration: 0.5s;
}