*{
    font-family:   sans-serif;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    background-color: hsl(0, 64%, 94%);
    position: fixed;
}

h1{
    text-align: center;
}

.choices{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 5rem;
}

.choices button{
    background-color: hsl(193, 89%, 58%);
    padding: 1.8rem;
    border-radius: 50%;
    font-size: 3rem;
    cursor: pointer;
    border: none;
}

.choices button:hover{
    background-color: hsl(193, 89%, 40%);
}

.choices button:active{
    transform: scale(0.95);
    box-shadow: inset 2px 2px 10px rgba(0, 38, 58, 0.5);
}

.selectedChoice {
    height: 50px;
    display: flex;
    justify-content: space-around;
    margin-top: 5rem;
    margin-left: 8rem;
    font-size: 1.5em;
    align-items: center;
    min-height: 60px; 
    line-height: 1;
}

#playerChoice, #computerChoice {
    width: 15em;
    min-height: 1.5em;
    display: flex;
    align-items: center;
}

.emoji{
    font-size: 1.7em;
}
.result{
    font-size: 4rem;
    text-align: center;
}

.score-reset{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.reset button{
    width: 100px;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: hsla(0, 78%, 62%, 0.856);
    color: #fff;
    border-radius: 10px;
}

.reset button:hover{
    background-color: hsla(0, 38%, 42%, 100%);
}

.highlight{
    padding: 1.5px 2px;
    background-color: yellow;
    font-weight: 600;
    color: blue;
}

@media (max-width: 768px){
    .choices button{
        background-color: hsl(193, 89%, 58%);
        padding: 1rem;
        border-radius: 50%;
        font-size: 2rem;
        cursor: pointer;
        border: none;
    }

    .selectedChoice{
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        gap: 2rem;
        margin-top: 5rem;
        margin-left: 2rem;
    }

    .result{
        font-size: 2rem;
        margin-top: 5rem;
        text-align: center;
    }

    .score-reset{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: space-evenly;
        align-items: center;
    }

    .emoji{
        font-size: 1.3em;
    }
}


