@import url('https://fonts.googleapis.com/css2?family=Asap:wght@300&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;1,6..96,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: darkslateblue;
}

header {
    background-color: white;
    padding: 20px;
}

h1 {
    color: black;
    text-align: center;
    font-family: Asap, sans-serif;
}

.score-board {
    border: 3px solid white;
    border-radius: 4px;
    text-align: center;
    width: 200px;
    margin: 20px auto;
    color: white;
    font-size: 46px;
    padding: 15px 20px;
    font-family: Asap, sans-serif;
    position: relative;
}

.badge {
    background-color: red;
    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;
    font-family: Asap, sans-serif;
    font-weight: bold;
    text-align: center;
}

.choices {
    text-align: center;
    margin: 50px 0;
}

.choice {
    /* border: 4px solid white; */
    border: 10px solid transparent;
    /* object-fit:inherit; */
    background-color: white;
    border-radius: 50%;
    overflow: hidden;
    /* padding: 10px; */
    margin: 0 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.choice:hover {
    cursor: pointer;
}

#action-message {
    text-align: center;
    color: white;
    font-family: Asap, sans-serif;
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 20px;
}

.green-glow {
    border: 10px solid greenyellow;
    box-shadow: 0 0 10px green;
}

.red-glow {
    border: 10px solid tomato;
    box-shadow: 0 0 10px red;
}

.grey-glow {
    border: 10px solid gray;
    box-shadow: 0 0 10px grey;
}

@media screen and (max-width: 425px) {
    img {
        width: 80px;
        height: 80px;
    }
}