body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    font-family: Helvetica, Arial, sans-serif;
}
#body-container{
    min-height: 100vh;
    min-width: 100vw;
    background-color: lightgray;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
#score-board{
    color: black;
    font-size: 2rem;
    padding-top: 50px;
}
#player-score{
    font-size: 3rem;
    color: green;
}
#computer-score{
    font-size: 3rem;
    color: tomato;
}
#buttons-container{
    display: flex;
    gap: 3rem;
}
.button{
    font-family: Arial, Helvetica, sans-serif;
    width: 7rem;
    aspect-ratio: 1 / 1;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    border-radius: 50rem;
    background-color: hsl(195, 53%, 70%);
    &:hover{
        background-color: hsl(195, 53%, 75%);
    }
    &:active{
        background-color: green;
    }
}
#computer-shot{
    color: black;
    font-size: 1.5rem;
    text-align: center;
}
#commentary{
    font-size: 2rem;
    padding: 1rem;
    text-align: center;
}
#body-container a{
    color: hsla(0, 0%, 0%, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    align-self: flex-end;
    padding-right: 10px;
}