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

body {
    
    --color1: white;
    --color2: white;
    --color3: white;
    --color4: white;
    --color5: white;

    --viridian-green: #119da4ff;
    --teal-blue: #0c7489ff;
    --midnight-green-eagle-green: #13505bff;
    --rich-black-fogra-39: #040404ff;
    --timberwolf: #d7d9ceff;
    
    --header-height: 60px;
    --shadow: 0px 10px 20px -12px var(--midnight-green-eagle-green);
    --gutter: 30px;
    --footer-height: 25px;
    
    font-family: 'Play', sans-serif;
    color: var(--timberwolf);
    background-color: var(--rich-black-fogra-39);
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: calc(var(--footer-height));
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--midnight-green-eagle-green);
    height: var(--header-height);
    box-shadow: var(--shadow);
    font-size: 20px;
    color: var(--timberwolf);
    text-shadow: -2px -2px var(--rich-black-fogra-39);
    
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    height: var(--footer-height);
    display: flex;
    justify-content: flex-end;
    background-color: var(--midnight-green-eagle-green);
    box-shadow: var(--shadow);
}

.score-container {
    border: solid 2px var(--teal-blue);
    margin: 15px auto;
    padding: 5px;
    font-size: 40px;
    position: relative;
    width: 175px;
    text-align: center;
    border-radius: 5px;
}

.user-badge {
    position: absolute;
    background-color: var(--midnight-green-eagle-green);
    top: 18px;
    left: -20px;
    font-size: 20px;
    text-shadow: -1px -1px var(--rich-black-fogra-39);
    border-radius: 2px;
    width: 45px;
}

.comp-badge {
    position: absolute;
    background-color: var(--midnight-green-eagle-green);
    top: 18px;
    right: -25px;
    font-size: 20px;
    text-shadow: -1px -1px var(--rich-black-fogra-39);
    border-radius: 2px;
    width: 55px;
    text-align: center;
}

#reset-btn {
    cursor: pointer;
    background-color: var(--midnight-green-eagle-green);
    color: var(--timberwolf);
    border: solid 2px var(--teal-blue);
    border-radius: 5px;
    text-shadow: -1px -1px var(--rich-black-fogra-39);;
}

#reset-btn:hover {
    color: var(--rich-black-fogra-39);
    text-shadow: -1px -1px var(--teal-blue);;
}

.results {
    font-size: 30px;
}

.choice-container {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.choice {
    border: solid 2px var(--timberwolf);
    border-radius: 50%;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 150px;
    transition: all .3s ease-in-out;
}

.choice:hover {
    cursor: pointer;
    background-color: var(--midnight-green-eagle-green);
}

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

.command {
    font-size: 30px;
    color: var(--teal-blue)
}

.hidden {
    display: none;
}

.noPointer {
    pointer-events: none;
}
