@import url('https://fonts.googleapis.com/css?family=Asap:700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #24272e;
}

header {
    background-color: white;
    padding: 20px;
}

header > h1 {
    color: #25272e;
    text-align: center;
    font-family: Asap, sans-serif;
}

.score-board {
    margin: 20px auto;
    border: 3px solid white;
    border-radius: 4px;
    text-align: center;
    padding: 15px 20px;
    width: 200px;
    color: white;
    font-size: 46px;
    font-family: Asap, sans-serif;
    position: relative;
}

.user-badge {
    background: #e25b4d;
    color: white;
    font-size: 14px;
    padding: 2px 10px;
    font-family: Asap, sans-serif;
}

.comp-badge {
    background: blue;
    color: white;
    font-size: 14px;
    padding: 2px 10px;
    font-family: Asap, sans-serif;
}

#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-family: Asap, sans-serif;
    font-weight: bold;
}

.choices {
    margin: 50px 0;
    text-align: center;

}

.choice {
    display: inline-block;
    border: 4px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.choice:hover {
    cursor: pointer;
    background-color: red;
}

#action-message {
    text-align: center;
    color: white;
    font-family: Asap, sans-serif;
    font-weight: bold;
    font-size: 20px;
}

#tie {
    font-size: 40px;
    color: white;
    text-align: center;
}

.badge-two {
    background: #e25b4d;
    color: white;
    font-size: 8px;
    padding: 2px 10px;
    font-family: Asap, sans-serif;
}

.comp-badge-two {
    background: blue;
    color: white;
    font-size: 8px;
    padding: 2px 10px;
    font-family: Asap, sans-serif;
}

