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


body {
    background-color: #1A1A1B;
    color: white;
}

header {
    background: white;
    padding: 20px;
}


header > h1 {
    color: #1A1A1B;
    text-align: center;
    font-family: 'Rubik Mono One', sans-serif;
}

img {
    height: 250px;
    width: 243px;
}

@media (max-width: 950px) { /* for when screen is 950px or less - icons shrink */
    img {
        height: 150px;
        width: 143px;
    }
}

@media (max-width: 450px) { /* for when screen is 450px or less - icons shrink again*/
    img {
        height: 50px;
        width: 43px;
    }
}

.score-board {
    margin: 20px auto;
    border: 3px solid white;
    border-radius: 4px;
    text-align: center;
    width: 200px;
    color: yellow;
    font-size: 46px;
    padding: 15px 20px;
    font-family:'Codystar', cursive;   /* IDEA:  font-family: 'VT323', monospace; */
    font-weight: bold;
    position: relative;
}

.badge {
    background: #E2584D;
    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-weight: bold;
    font-family: 'Asap', sans-serif;

}


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

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

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

#action-message {
    text-align: center;
    color: white;
    font-family: 'Asap', sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
}


.green-glow { /* this controls the green ring when winning */
    border: 15px solid #4dcc7d;
    box-shadow: 0 0 10px #31b43a;
}

.red-glow { /* this controls the red ring when losing */
    border: 15px solid #fc121b;
    box-shadow: 0 0 10px #d01115;
}

.draw-glow { /* this controls the blue ring when there's a draw */
    border: 15px solid #8D99AE;
    box-shadow: 0 0 10px #0056E0;
}
