@import url('https://fonts.googleapis.com/css2?family=Advent+Pro&family=Poppins&display=swap');

:root {
    --first-color: #FFB800;
    --second-color: #EF5DA2;
    --third-color: #FFC8DB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Advent Pro', sans-serif;
}

body {
    background-color: var(--second-color);
}

.all {
    height: 100vh;
    width: 100wh;
    margin: auto;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: calc(50vh - 330px);
}

.game-area {
    height: 580px;
    width: 700px;
    background-color: #FFFFFF;
    border-radius: 52px;
    padding: 30px 50px 50px 50px;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

.circles {
    height: 18px;
    width: 77px;
    display: flex;
    justify-content: space-between;
}
.circle {
    width: 18px;
    height: 18px;
    background-color: var(--first-color);
    border-radius: 50%;
    float: left;
}

#first-circle { background-color: var(--second-color); }
#second-circle { background-color: var(--third-color); }
#third-circle { background-color: var(--first-color); }

.title {
    font-size: 32px;
    background-color: var(--first-color);
    width: 70%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

/* .game {
    display: flex;
    justify-content: space-between;
} */

.points {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--first-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.score {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
}

.profile {
    width: 121px;
    height: 121px;
    background-color: var(--first-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: calc(50% - 60.5px - 64px);
}

#robot, #human {
    margin: 0px 100px;
    display: flex;
    align-items: center;
}

#robot {
    padding-bottom: 80px;
}

#human {
    padding-top: 30px;
}

#robot .profile img {
    width: 98px;
    height: 90px;
}

#human .profile img {
    width: 98px;
    height: 105.38px;
}

.line {
    border: var(--first-color) solid 1px;
    background-color: var(--first-color);
}

.rps img {
    width: 86px;
}

.rps {
    width: 86px;
    height: 86px;
    display: block;
    z-index: 1;
    position: absolute;
    margin-top: 140px;
}

#rps-robot {
    margin-left: calc(80px * 3);
}

#rps-player {
    margin-left: 80px;
}

.choice {
    width: 80%;
    height: 88px;
    background-color: var(--first-color);
    padding: 50px;
    margin-left: 10%;
    margin-top: 50px;
    float: left;
    border-radius: 86px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.paper, .rock, .scissor {
    height: 71px;
    cursor: pointer;
    color: transparent;
    z-index: 2;
}

.paper {
    width: 80px;
    background-image: url(imgs/paper.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    border: 0;
}

.rock {
    width: 83px;
    background-image: url(imgs/rock.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    border: 0;
}

.scissor {
    width: 100px;
    background-image: url(imgs/scissor.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    border: 0;
}

.option {
    font-family: 'Advent Pro';
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 70px;

}

.win {
    left: 70px;
    font-size: 25px;
    position: relative;
}

.winner {
    font-size: 40px;
    display: none;
}

.reload {
    background-color: var(--third-color);
    border: 0;
    padding: 5px;
    font-size: 18px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}