* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "roboto", sans-serif;
    background-color: lightgrey;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 50px;
}

.display {
    display: flex;
    gap: 50px;
}

img {
    width: 300px;
    height: 400px;
}

.buttons {
    display: flex;
    gap: 10px;
}

.buttons button {
    border: none;
    font-size: 36px;
    color: white;
    background-color: rgb(57, 133, 247);
    padding: 10px 20px;
    border-radius: 20px;
}

#humanChoiceImg {
 display: flex;
 justify-content: center;
 flex-direction: column;
 align-items: center;
 gap: 50px
}


#computerChoiceImg {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 50px
}

p {
    font-size: 20px;
    font-weight: bold;
}

.new-game-button button{
    border: none;
    font-size: 36px;
    color: white;
    background-color: red;
    padding: 10px 20px;
    border-radius: 20px;
}
