*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial,sans-serif;
}

body{
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100vh;
    color: white;
    background-color: rgba(229, 230, 245, 0.842);
}

#container{
    background: linear-gradient(180deg,hsl(197, 84%, 51%),hsl(253, 86%, 53%));
    padding: 4rem 4.5rem;
    border-radius: 10px;
    box-shadow: 2px 4px 10px grey;
}

#heading{
    font-size: 3rem;
    margin-bottom: 1rem;
}

.scores{
    font-size: 1.5rem;
}

.btnsChoices{
    font-size: 5rem;
    margin: 1rem 0.1rem;
    background-color: hsla(180, 65%, 46%, 0.678);
    border: none;
    border-radius: 260px;
    width: 7rem;
    height: 7rem;
    cursor: pointer;
    transition: background-color ease 0.5s;
    border-bottom: 2px solid black;
}

.btnsChoices:hover{
    background-color: hsla(180, 65%, 26%, 0.678);
    transform: translateY(-1px);
}

.btnsChoices:active{
    background-color: hsla(180, 65%, 16%, 0.678);
    transform: translateY(1px);
    border: none;
}

.displays,#resultDisplay{
    font-size: 2rem;
    margin: 1rem 0;
}

.win{
    color: rgb(33, 219, 33);
}

.lose{
    color: rgb(255, 49, 49);
}

#reset{
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    border: none;
    font-weight: bold;
    color: white;
    background-color: hsla(180, 65%, 46%, 0.678);
    border-bottom: 2px solid black;
    transition: background-color ease 0.5s;
    cursor: pointer;
}

#reset:hover{
    background-color: hsla(180, 65%, 26%, 0.678);
    transform: translateY(-1px);
}

#reset:active{
    background-color: hsla(180, 65%, 16%, 0.678);
    transform: translateY(1px);
    border: none;
}

img {
    width: 4.2rem;
}