* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

button {
    padding: .5rem 1rem;
}

button i {
    padding-right: .3rem;
}

button:hover {
    cursor: pointer;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background-color: #2c3e50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#game {
    padding: 2rem;
    border: 1px solid #fff;
}

#player-move,
#computer-move,
#result,
#round {
    font-weight: 500;
}

.score {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

#player-score,
#computer-score {
    font-weight: 500;
}

.reset-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
