﻿@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700");
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:300,500');

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

#playPauseBTN {
    width: 54px;
    height: 40px;
    cursor: pointer;
    margin-left: 460px;
    margin-top: -68px;
    position: absolute;
}

#rst {
    width: 54px;
    height: 40px;
    cursor: pointer;
    margin-left: 186px;
    margin-top: -28px;
    position: absolute;
}

* {
    margin: 0;
    padding: 0;
    font-family: monospace;
    color: chartreuse;
    font-weight: bold;
}

.move {
    margin-top: 32px;
    font-size: 23px;
}

body {
    background: url(../image/bgimg.jpg);
    background-size: 387px 163px;
    color: white;
    font-family: "Aerial", sans-serif;
    overflow:hidden;
}

code {
    font-family: 'Source Code Pro', monospace;
    font-size: 12px;
}

/*a {
	font-family: 'Source Code Pro', monospace;
	color: #ffcc99;
}

a:hover {
	color: #ffba76;
}*/



header {
    /*background: url(https://thumbs.dreamstime.com/b/kids-game-rock-paper-scissors-pattern-white-background-134992609.jpg);*/
    padding: 20px;
}

    header h1 {
        text-align: center;
        font-weight: 100;
        font-weight: bold;
        font-family: monospace;
        margin-top: 82px;
        color: darkorange;
        font-size: 35px;
    }


.score-board {
    border: 3px solid gold;
    width: 300px;
    margin: 40px auto;
    font-size: 40px;
    border-radius: 4px;
    text-align: center;
    padding: 15px 20px;
    position: relative;
    border-radius: 48px;
}

.badge {
    background: none;
    text-transform: uppercase;
    font-size: 19px;
    padding: 10px 6px;
}

#user-label {
    position: absolute;
    top: -35%;
    left: 9%;
    transform: translate(-10%, -50%);
    font-family: monospace;
    color: chartreuse;
    font-weight: bold;
    font-size: 30px;
}

#computer-label {
    position: absolute;
    top: -33%;
    right: 9%;
    transform: translate(10%, -50%);
    font-family: monospace;
    color: chartreuse;
    font-weight: bold;
    font-size: 30px;
}

.result {
    font-weight: 300;
    text-align: center;
    font-size: 32px;
    line-height: 40px;
}

.result {
    line-height: 50px;
}

.choices {
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}

.choice {
    display: inline-block;
    border: 3px solid gold;
    border-radius: 50%;
    padding: 10px;
    margin: auto 10px;
    transition: all 0.3s ease;
}

    .choice :hover {
        cursor: pointer;
    }

    .choice img {
        filter: invert(100%);
    }

#action-message {
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 22px 0;
    font-weight: bold;
}

.winningStyles {
    border: 3px solid #4d5c8d;
    background-color: #044617;
    box-shadow: 0 0 20px #043507;
}

.losingStyles {
    border: 3px solid #c62e36;
    background-color: #2e4404;
    box-shadow: 0 0 20px #2e0303;
}

.drawStyles {
    border: 3px solid #444;
    background-color: #222;
    box-shadow: 0 0 20px #222;
}

sup {
    margin: 0;
    padding: 0;
}

footer {
    /*background: url(https://thumbs.dreamstime.com/b/kids-game-rock-paper-scissors-pattern-white-background-134992609.jpg);*/
    padding: 10px;
}

    footer h3 {
        color: black;
        text-align: center;
        font-weight: 100;
        font-weight: bold;
    }

    @media screen and (max-width:1000px){
        #playPauseBTN {
            margin-left: 48px;
            margin-top: -21px;
            width: 69px;
            height: 48px;
        }

        #rst {
            margin-left: 69px;
            margin-top: 12px;
            width: 89px;
            height: 51px;
        }

        header h1 {
            margin-top: 55px;
        }
    }