*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: linear-gradient(135deg,
            #1becff,
            #1bbeff);
}

.container {
    width: 45%;
    min-width: 500px;
    background-color: #12658c;
    padding: 40px 30px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.scores {
    margin-bottom: 50px;
    text-align: right;
}

.weapons {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-around;
}

.weapons button {
    background-color: #1bffd5;
    color: #000000;
    border: none;
    font-size: 50px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}

.details {
    margin-top: 30px;
    text-align: center;
}

.scores,
.details {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
}

#result {
    width: 180px;
    padding: 10px 0;
    margin: 30px auto;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#user_choice,
#computer_choice {
    font-weight: 400;
    margin-bottom: 10px;
}

span {
    font-weight: 600;
}


body {
	background-color: #FFFFFF;
	color: #000000;
}

.dark-mode {
	background-color: #000000;
	color: #FFFFFF;
}

body {
    background-color: #f1f1f1;
    color: #222;
}
.dark-mode {
    background-color: #222;
    color: #f1f1f1;
}
.dark-mode button {
    background-color: #f1f1f1;
    color: #222;
}
.dark-mode .fa {
    color: #f1f1f1;
}
