@import url('https://fonts.googleapis.com/css?family=Asap:400,500i,700');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Asap, sans-serif;
}

body {
    padding: 0 !important;
    background-color: darkslategray;
}

header {
    margin-top: 50px;
    background: white;
    padding: 20px;

}

header h1 {

    color: black;
    text-align: center;

}

.score-board {
    margin: 20px auto;
    border: 3px solid white;
    width: 200px;
    color: white;
    font-size: 46px;
    text-align: center;
    padding: 15px 20px;
    border-radius: 4px;
    /* position: relative; */
}


.badge {
    background:red;
    color: white;
    font-size: 14px;
    padding: 2px 10px;

}

#user-label {

    /* position: absolute; */
    top: 30px;
    left: -25px;

}

#computer-label {

    /* position: absolute; */
    top: 30px;
    right: -30px;
}

.result {
    font-size: 40px;
    color: white;
}

.result p {
    text-align: center;
    font-weight: bold;

}

.choices {
    margin-top: 50px;
    text-align: center;
}

.choice {
    display: inline-block;
    border: 4px solid white;
    border-radius: 50%;
    margin: 0 25px;
    padding: 10px;
    transition: all 0.3s ease;
}


.choice:hover {
    cursor: pointer;
    background: darkcyan;
}

#action-message {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;

}