* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #8ad7c1;
}

.title {
    text-align: center;
    font-size: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.main-button {
    display: block;
    margin: auto;
    text-align: center;
}

.player-options {
    display: flex;
    margin: auto;
}

.human {
    display: block;
    margin: auto;
    text-align: center;
}

.computer {
    display: block;
    margin: auto;
    text-align: center;
}

.score {
    text-align: center;
}

.final-result {
    text-align: center;
}
img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #ec5858;
}
img:hover {
    /*width: 110px;
    height: 110px;*/
    border-radius: 50%;
    border: 4px solid #fecd1a;
}