body {
    background: linear-gradient(45deg, red, blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

}

.game {
    border: 2px solid black;
    padding: 20px;
    border-radius: 20px;
    background-color: #363131;
}

.game h1 {
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #f1eded;
    padding: 20px;
}

.game img {
    color: white;
    background-color: white;
    height: 100px;
    width: 100px;
    object-fit: cover;
    gap: 30px;
    border-radius: 50%;
    margin: 25px;
    border: 2px solid black;
    cursor: pointer;
}

#rock {
    background-color: brown;
}

#paper {
    background-color: cadetblue;
}

#scissors {
    background-color: chocolate;
}

.box {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    font-size: 1.3rem;
    border: 1px solid;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px;
}

.game .reset {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    color: white;
}

button {
    border-radius: 10px;
    padding: 5px 5px 5px 5px;
    font-size: 1.2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(146, 213, 146);
    cursor: pointer;
    border: 2px solid rgb(146, 213, 146);
    box-shadow: 0px 0px 10px 0px rgb(146, 213, 146);
}

.emoji {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: white;
    gap: 90px;
}

.win {
    color: limegreen;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}
p{
    font-size: 1.3rem;
}