@import url('https://fonts.googleapis.com/css2?family=Asap:wght@600&display=swap');

/* h2{
    text-align: center;
    font-size: 40px;
    border: none;
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    height: 100px;
    width: 100px;
}

#user-score {
    padding-right: 25px;
}

#comp-score {
    padding-left: 25px;
}

body { 
    background-color: white;
background-image: url("images/banner.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
   
}

header {
    padding: 20px;
}
header>h2 {
    color: black;
    text-align: center;
    text-transform: capitalize;
    font-family: 'Asap', sans-serif;
    font-size: 40px;
   
}

.scoreboard {
    margin: 22px auto;
    margin-bottom: 14px;
    border: 3px solid rgb(0, 0, 0);
    width: 200px;
    color: rgb(0, 0, 0);
    font-size: 30px;
    border-radius: 4px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 8px;
    font-family: Asap, sans-serif;
    position: relative;
}

.badge {
    /* background-color: #00CDCD; */
    color: rgb(0, 0, 0);
    font-size: 20px;
    padding: 2px 10px;
    font-family: Asap, sans-serif;
}

#user-label {
    position: absolute;
    top: 0px;
    left: 25px;
    /* border-bottom: 1.5px solid white; */
}

#comp-label {
    position: absolute;
    top: 0px;
    right: 25px;
    /* border-bottom: 1.5px solid white; */
}
.header_section {
    width: 100%;
    float: left;
    background-image: url(../images/banner.jpg);
    height: auto;
    background-size: 100%;
    background-repeat: no-repeat;
}


.choices {
    text-align: center;
    margin: 0;
    padding-bottom: 80px;
    padding-top: 30px;
}

.choice {
    display: inline-block;
    border: 3px solid rgb(0, 0, 0);
    border-radius: 50%;
    margin: 10px 20px;
    padding: 0px;
    transition: all 0.3s ease;
}

.choice:hover {
    cursor: pointer;
    background: #363b45;
}

#action-message {
    text-align: center;
    font-size: 20px;
    font-family: Asap, sans-serif;
    color: rgb(0, 0, 0);
    font-weight: bold;
}

.result {
    font-size: 29px;
    color: rgb(0, 0, 0);
    font-family: Asap, sans-serif;
    text-align: center;
    font-weight: bold;
    padding: 14px;
}

#user-thing {
    font-size: 20px;
    padding-right: 10px;
}

#comp-thing {
    font-size: 20px;
    padding-left: 10px;
}

.green-glow {
    border: 4px solid green;
    box-shadow: 0 0 10px rgb(2, 63, 2);
}

.red-glow {
    border: 4px solid red;
    box-shadow: 0 0 10px rgb(115, 2, 2);
}

.grey-glow {
    border: 4px solid rgb(72, 70, 70);
    box-shadow: 0 0 10px rgb(66, 65, 65);
}