
/* body{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
} */
/* HTML5 display-role reset for older browsers */
/* article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
} */


/* Suwit Jawa 2.0 */
body {
    background-image: url(img/bg.png);
    font-family: arial;
}
h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin: 10px 0;
    margin-top: 10px;
    text-transform: uppercase;
    color:dimgrey;
    border-color: #1d1c1c;
}
.container {
    width: 600px;
    margin: auto;
    padding: 20px;
    position: relative;
}


.area-komputer {
    width: 560px;
    height: 230px;
    margin: 5px auto;
    background-color: lightblue;
    background: linear-gradient(to bottom, rgba(179,220,237,1) 0%, rgba(41,184,229,1) 100%);
    position: relative;
    padding-top: 10px;
    box-sizing: border-box;
    border-radius: 30px 30px 0 0;
}
.area-komputer h3 {
    font-size: 25px;
    font-weight: bold;
    text-align: left;
    margin: 2px 5px;
    margin-top: 2px;
    text-transform: uppercase;
    color: #1d1c1c;
}
.area-player {
    width: 560px;
    height: 230px;
    margin: 5px auto;
    background-color: lightgreen;
    background: linear-gradient(to bottom, rgba(210,255,82,1) 0%, rgba(145,232,66,1) 100%);
    position: relative;
    border-radius: 0 0 30px 30px;
}

.info {
    width: 150px;
    height: 60px;
    border: 5px solid salmon;
    position: absolute;
    left: 50%;
    margin-left: -75px;
    top: 50%;
    margin-top: -30px;
    background-color: white;
    border-radius: 30px;
    z-index: 1;
    text-align: center;
    line-height: 60px;
    color: #f89bb4;
    font-size: 26px;
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}

.area-player h3 {
    font-size: 25px;
    font-weight: bold;
    text-align: left;
    margin: 2px 5px;
    margin-top: 2px;
    padding-top: 10px;
    text-transform: uppercase;
    color: #1d1c1c;
}

ul {
    padding-top: 10px;
    padding-left: 25px;
}

li {
    display: inline-block;
    margin: 0 18px;
}

img {
    width: 130px;
    height: 130px;
    display: block;
    margin: auto;
    border-radius: 50%;
}

.rock, .scissors, .paper {
    transition: .3s;
    position: relative;
    top:0;
    cursor: pointer;
}

.rules {
    width: 560px;
    margin: 5px auto;
    background: whitesmoke;
    position: relative;
    border-radius: 10px 10px;
    text-align: center;
    padding: 4px;
}

p {
    font-size: 16px;
    font-weight: 500;
    margin: 8px;
}

.rock:hover, .paper:hover, .scissors:hover, .active {
    box-shadow: 0 0 10px 5px limegreen;
}

.rock:active, .paper:active, .scissors:active {
    top: 2px;
}

@media screen and (max-width: 785px) { 
    h2 {
        font-size: 18px;
        font-weight: 500;
        margin: 5px 0;
        margin-top: 5px;
    }
    .container {
        width: 400px;
        padding: 10px;
    }
    .area-komputer {
        width: 380px;
        height: 140px;
        padding-top: 5px;
        border-radius: 10px 10px 0 0;
    }
    .area-komputer h3 {
        font-size: 15px;
    }
    .area-player {
        width: 380px;
        height: 140px;
        border-radius: 0 0 10px 10px;
    }
    .info {
        width: 100px;
        height: 40px;
        margin-left: -55px;
        line-height: 40px;
        font-size: 15px;
    }
    .area-player h3 {
        font-size: 15px;
    }
    ul {
        padding-top: 7px;
        padding-left: 15px;
    }
    
    li {
        display: inline-block;
        margin: 0 18px;
    }
    img {
        width: 80px;
        height: 80px;
    }
    .rules {
        width: 380px;
    }
}

