*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header h1{
    font-weight: 750;
}

.user_choice {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.options{
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 50px;
}

.rock,.paper,.scissor{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.rock,.paper,.scissor h3{
    font-size: 30px;
}
.img_rock{
    width: 200px;
    height: 200px;
    border:2px solid black;
    border-radius: 50%;
    background-image: url("images/raised-fist.svg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px;
}

.img_paper{
    width: 200px;
    height: 200px;
    border:2px solid black;
    border-radius: 50%;
    background-image: url("images/waving-hand.svg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px;
}

.img_scissor{
    width: 200px;
    height: 200px;
    border:2px solid black;
    border-radius: 50%;
    background-image: url("images/scissor.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    padding: 10px;
}