*{
    margin: 0;
    padding: 0;
}

body{
    background-image: url(image/game_wallpaper.jpg);
    font-family: arial;
    width: 100%;
}

.container{
    max-width: 80%;
    margin-left: 10%;
    text-align: center;
}

#title{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
    margin-top: 30px;
    text-transform: uppercase;
    color: #e7e7e7;
    text-shadow: 1.5px 1.5px 0 #333, 0px 1.5px 0 #333, -1.5px -1.5px 0 #333, -1.5px -1.5px 0 #333, -1.5px 1.5px 0 #333, 1.5px -1.5px 0 #333, 0.7778174593px 0.7778174593px 0 #aaaaaa, 1.5556349186px 1.5556349186px 0 #aaaaaa, 2.3334523779px 2.3334523779px 0 #aaaaaa, 3.1112698372px 3.1112698372px 0 #aaaaaa, 3.8890872965px 3.8890872965px 0 #aaaaaa, 4.6669047558px 4.6669047558px 0 #aaaaaa, 5.4447222151px 5.4447222151px 0 #aaaaaa, 6.2225396744px 6.2225396744px 0 #aaaaaa, 7.0003571337px 7.0003571337px 0 #aaaaaa, 7.7781745931px 7.7781745931px 0 #aaaaaa;
}

.computer-area{
    margin-top: 2%;
    max-width: 75%;
    margin-left: 12.5%;
    background-color: lightblue;
    background: linear-gradient(to bottom, rgba(179,220,237,1) 0%, rgba(41,184,229,1) 100%);
    border-radius: 40px 40px 0 0;
    padding-top: 3%;
    padding-bottom: 3%;
    box-sizing: border-box;
}

.player-area{
    padding-top: 3%;
    padding-bottom: 3%;
    border-radius: 0 0 40px 40px;
    max-width: 75%;
    margin-left: 12.5%;
    background-color: lightgreen;
    background: linear-gradient(to bottom, rgba(210,255,82,1) 0%, rgba(145,232,66,1) 100%);
}

.score-area{
    max-width: 75%;
    margin-left: 12.5%;
    height: 50px;
    box-sizing: border-box;
    border: 5px solid salmon;
    background-color: white;
    color: #f89bb4;
    line-height: 40px;
    font-size: 30px;
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}

.computer-area img{
    margin-top: 1%;
    width: 20%;
}

ul li{
    margin : 0 1rem;
    width: 25%;
    list-style: none;
    display: inline-block;
}

img{
    margin-top: 5%;
    width: 100%;
}

.rock, .paper, .scissor{
    transition: .3s;
    cursor: pointer;
}

.rock:hover, .paper:hover, .scissor:hover, .active{
    box-shadow: 0 0 10px 5px whitesmoke;
    transform: scale(1.1);
}


@media(max-width: 704px){
    ul li{
        text-align: center;
        display: block;
        margin: 1rem auto;
    }
}

@media(max-width: 560px){
    #title{
        font-size: 20px;
    }

    .comp-text{
        font-size: 15px;
    }

    .player-text{
        font-size: 15px;
    }
}