* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #36384c;
}

header {
    background:#e9dccd;
    padding: 20px
}

header > h1 {
    text-align: center;
    font-family: Oswald;
}

.score-board {
    border: 2px solid #c6cccc;
    border-radius: 4px;
    text-align: center;
    margin: 20px auto;
    padding: 15px 20px;
    width: 200px;
    color: #c6cccc;
    font-size: 46px;
    font-family: Oswald;
    position: relative;
} 

.badge {
    background-color: #f26968;
    font-size: 15px;
    padding: 2px 10px;
    font-family: Oswald;
}

#user-label {
    position: absolute;
    top: 30px;
    left: -25px;
}

#computer-label {
    position: absolute;
    top: 30px;
    right: -25px;
}

.result {
    font-size: 40px;
    font-family: Oswald;
    color: #c6cccc;
    text-align: center;
}
.choices {
    text-align: center;
    margin-top: 50px 0;
}

.choice {
    display: inline-block;
    margin: 20px 15px;
    padding: 10px;
    transition: all 0.2s ease;
}

.choice:hover {
    background-color: #222330;
    border-radius: 80px;
    cursor: pointer;
}

#action-message {
    text-align: center;
    color: #c6cccc;
    font-family: Oswald;
    font-size: 20px;
    margin-top: 20px;
}