*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #f77062, #fe5196);




}
.wrapper{
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    border: 3px solid rgba(201, 201, 201);
    border-radius: 32px;
    padding: 80px 50px;
}
h1{
    font-size: 32px;
}

h3{
    font-size: 18px;
    color: #fe5196;
}
#choices{
    display: flex;
    gap: 8px;
}
#choices button{
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 48px;
    border: 3px solid transparent;
    transition: 48px ease-in-out;
    cursor: pointer;
}
#choices button:hover{
    background-color: white;
    border: 3px solid #fe5196;
    transform: scale(1.05);

}
#player-choice,#computer-choice{
    font-size: 20px;
    font-weight: bold;
}
#resultDisplay{
    font-size: 48px;
    background: rgb(246, 245, 245);
    border-radius: 8px;
    padding: 10px 50px;
}
#resultDisplay:hover{
    background-color:  #fe5196;
    border: 3px solid  rgb(165, 164, 164);
}