@import url('https://fonts.googleapis.com/css2?family=Asap:wght@500;700;800&display=swap');
*
    {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
body
    {
        background-color: #d1bb96;
    }
header
    {
        background: #50311b;
        padding: 20px;
    }
header > h1
    {
        color: #fdfdfd;
        text-align: center;
        font-family: Asap, sans-serif;
        font-size: 50px;
        text-transform: uppercase;
    }
.container
    {
        width: 50%;
        margin-top: 10px;
    }
.selections
    {
        display: flex;
        justify-content: center;
        gap: 100px;
    }
.selection
    {
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 100px;
        transition: 100ms;
        margin-top: 20px;
    }
.selection:hover
    {
        transform: scale(1.2);
    }
.results
    {
        margin-top: 10px;
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: center;
        font-size: 30px;
        font-family: Asap, sans-serif;
        font-weight: bold;
        
    }
.result_score
    {
        margin-left: .1rem;
        font-size: 20px;
        color: #4a4e4d;
    }
.result-selection
    {
        opacity: .5;

    }
.result-selection.winner
    {
        opacity: 1;
        font-size: 1.5rem;

    }
.restart-btn
    {
        display: inline-block;
        background: var(--light-color);
        color: #14232a;
        padding: 0.4rem 1.3rem;
        font-size: 25px;
        cursor: pointer;
        outline: none;
        border: none;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: Asap, sans-serif;
        font-weight: bold;
    }
.restart-btn:hover
    {
        color: #875a27;
    }

/* ------------------------------------------------------------------------ */
/* Responsive */
@media (min-width:481px) and (max-width:768px)
    {
        header > h1
        {
            color: #fdfdfd;
            text-align: center;
            font-family: Asap, sans-serif;
            font-size: 25px;
            text-transform: uppercase;
        }
        .selections
        {
            display: flex;
            justify-content: center;
            gap: 70px;
        }
        .selection
        {
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            font-size: 70px;
            transition: 100ms;
            margin-top: 20px;
        }
        .restart-btn
        {
            display: inline-block;
            background: var(--light-color);
            color: #14232a;
            padding: 0.4rem 1.3rem;
            font-size: 25px;
            cursor: pointer;
            outline: none;
            border: none;
            align-items: center;
            margin-top: 20px;
            margin-bottom: 20px;
            font-family: Asap, sans-serif;
            font-weight: bold;
        }
        .container
        {
            width: 100%;
            margin-top: 10px;
        }
        .results
        {
            margin-top: 10px;
            display: grid;
            justify-content: center;
            grid-template-columns: repeat(2, 1fr);
            justify-items: center;
            align-items: center;
            font-size: 30px;
            font-family: Asap, sans-serif;
            font-weight: bold;       
        }
}   
@media (min-width:280px) and (max-width:480px)
    {
        header > h1
        {
            color: #fdfdfd;
            text-align: center;
            font-family: Asap, sans-serif;
            font-size: 20px;
            text-transform: uppercase;
        }
        .selections
        {
            display: flex;
            justify-content: center;
            gap: 50px;
        }
        .selection
        {
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            font-size: 50px;
            transition: 100ms;
            margin-top: 20px;
        }
        .restart-btn
        {
            display: inline-block;
            background: var(--light-color);
            color: #14232a;
            padding: 0.4rem 1.3rem;
            font-size: 23px;
            cursor: pointer;
            outline: none;
            border: none;
            align-items: center;
            margin-top: 20px;
            margin-bottom: 20px;
            font-family: Asap, sans-serif;
            font-weight: bold;
        }
        .container
        {
            width: 100%;
            margin-top: 10px;
        }
        .results
        {
            margin-top: 10px;
            display: grid;
            justify-content: center;
            grid-template-columns: repeat(2, 1fr);
            justify-items: center;
            align-items: center;
            font-size: 25px;
            font-family: Asap, sans-serif;
            font-weight: bold;       
        }
    }