
* {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}
body
{
    display: flex;
    flex-direction: column;

    background-color: #181818;
    height: 100vh;
}

header
{
    height: 2em;
    width: 100%;
    background-color: rgb(54, 69, 202);
}

section
{
    width: 50%;
    margin: 5em auto auto auto;
    padding: 2em;
    
    color: #e9e9e9;
    background-color: #242424;

    border: 0.5px solid #383838;
    border-radius: 10px;
}

footer
{
    display: flex;
}
.colunas
{
    width: 100%;
    height: auto;
    padding: 1em;

    display: flex;
    flex-direction: column;
}

section div
{
    height: 100px;
    text-align: center;
}

a{
    color: wheat;
}
span{
    color: white;
}

#player_choice
{
    width: 90%;
    margin: auto;
    display: flex;
}
.choice
{
    display: block;
    width: 5.8em;
    height: 4em;
}

.choice_active
{
    display: block;

    width: 5.8em;
    height: 4em;

    border: 0.5px solid whitesmoke;
}

button
{
    all: unset;

    margin: auto;

    background-color: #383838;
    color: whitesmoke;
    
    border: 1px solid whitesmoke;
    border-radius: 12px;
}
button img 
{
    width: 2em;
}
button:hover
{
    background-color: #194980;
    border: 1px solid #ffffff;
}
button:active
{
    background-color: #0b1f36;
    border: 1px solid #ffffff;
}
button:disabled
{
    background-color: #a8a8a886;
    color: #d6d6d6;

    border: 1px solid #d1d1d1;
}

#pc_choice
{
    width: 35%;
    height: 2.5em;
    margin: auto;
    background-color: #1b1b1b;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-size: 4rem;
    border-radius: 70%;
}
#pc_choice img
{
    width: 1em;
}

#versus_label
{
    font-size: 4rem;
}
#play_div button
{
    width: 150px;
    height: 2.3em;
}

#result
{
    margin: 2em auto 10em auto;
    color: #f5f5f5;
}