/* @import url('https://fonts.googleapis.com/css2?family=Asap:wght@100..900&display=swap'); */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    height: 100%;
}
body{
    background-color: #292c34;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-x: hidden;
}

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


img{
   width: 96px;
}

header>h1{
    color:#292c34;
    text-align: center;
    font-family: Asap,sans-serif;
}

.score-board{
    border: 3px solid white;
    margin: 20px auto;
    padding: 15px 20px;
    text-align: center;
    color: white;
    width: 200px;
    font-size: 46px;
    font-family: Asap,sans-serif;
    border-radius: 8px;
    position: relative;
}

.badge{
    background: #E2584D;
    color: white;
    font-size: 14px;
    font-family: Asap,sans-serif;
    padding: 2px 10px;
}

#user-label{
    position: absolute;
    top: 30px;
    left: -25px;
}
#comp-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-top: 50px ;
    text-align: center;
}

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

.choice:hover{
    cursor: pointer;
    background-color: #171e30;
}

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

.green-glow{
    border: 4px solid #4dcc7d;
    box-shadow: 0 0 10px #31b43a;
}

.red-glow{
    border: 4px solid #fc121b;
    box-shadow: 0 0 10px #d01115;
}

.grey-glow{
    border: 4px solid #464647;
    box-shadow: 0 0 10px #25292b;
}

footer{
    background-color: white;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding: 1rem;
}
footer a{
    margin: 0 0.5rem;
    color: inherit;
    font-family: Asap,sans-serif;
}
footer a:last-child{
    margin: 0 0 0 auto;
}
